Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Current

concurrent-ruby:

* (#1072) Clarify that executor `#kill` may interrupt in-progress tasks.

## Release v1.3.8 (19 July 2026)

concurrent-ruby:
Expand Down
7 changes: 3 additions & 4 deletions lib/concurrent-ruby/concurrent/executor/executor_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,9 @@ module Concurrent

# @!macro executor_service_method_kill
#
# Begin an immediate shutdown. In-progress tasks will be allowed to
# complete but enqueued tasks will be dismissed and no new tasks
# will be accepted. Has no additional effect if the thread pool is
# not running.
# Begin an immediate shutdown. In-progress tasks may be interrupted,
# enqueued tasks will be dismissed, and no new tasks will be accepted.
# Has no additional effect if the thread pool is not running.

# @!macro executor_service_method_wait_for_termination
#
Expand Down