Release Notes
10.0.16.6089: Oct 07 2021
Windows - Shell Extension: View History is now shown in folder background context menu
View history was visible when showing the context menu of a file or folder. Now it is also shown when displaying the context menu of a folder's empty space.
All platforms - Server: The 'showmethodlist' and 'htop' plasticd shell commands show more detailed information regarding trigger execution.
Now, when a server call enters the phase in which it runs a trigger, the status of the underlying connection will reflect so. This way, if the server is stuck running a trigger, you can easily debug it using the 'plasticd shell' debug tool.
You can see an example here: I created a before-mkbranch trigger that got stuck! Using the plasticd shell command I could connect to my server. Then I run showmethodlist and I could see that the method call was in Status=Trigger
localhost:8087> showmethodlist ACTIVE METHOD CALLS Name Request IP Time Thread Status Protocol Sec User CreateBranch 9 127.0.0.1 00:00:03 21 Trigger Plastic None sluisp Total calls: 1 0 requests enqueued. 1 worker threads (0 free)
All platforms - Server: Configurable timeout for server-side triggers.
A timeout can now be set for server-side triggers (it is set to 2 minutes by default).
You can change the timeout by adding this to the server.conf config file:
<TriggerProcessTimeoutSeconds>120</TriggerProcessTimeoutSeconds>
Or entirely disable the timeout:
<TriggerProcessTimeoutSeconds>-1</TriggerProcessTimeoutSeconds>
All platforms - Web UI: Fixed the following issues
- After commenting on a code review with the whole branch selected, the comment doesn't show on the file if newly changesets were added to the branch;
- Fixed the list of comments cutting the last comment when the list scrolls;
- Disallow users to add comments on files outside code reviews;
- Fixed error popup in the desktop client when opening code reviews with conversations.