On 18 juin 2013, at 09:32, Sven Van Caekenberghe wrote:
Hi,
Yesterday I test deployed a brand new 3.0 image. It has more than 800 bogus delay related processes.
�
<Screen Shot 2013-06-18 at 09.30.30.png>
This is not good ;-)
The least we should do is add some script in the release/build process to kill them.
I added the following to my startup preferences:
Process allInstances do: [ :process |
process suspendedContext ifNotNil: [ :context |
context method = (Delay>>#wait) ifTrue: [ process terminate ] ] ]