-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/communication actions #80
base: feat/code-execution
Are you sure you want to change the base?
Conversation
@@ -41,7 +41,7 @@ public CodeExecutor(int plotId) { | |||
} | |||
|
|||
public void halt() { | |||
for (var r : running.values()) r.cancel(); | |||
for (var r : running.values()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it intentional that halting code does not halt anymore?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, it messes with cancelling events
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
halt needs to halt
No description provided.