Skip to content

Commit 8c73995

Browse files
RuboCop.
1 parent 6f52184 commit 8c73995

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/async/container/supervisor/connection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def self.dispatch(connection, target, id, message)
157157
ensure
158158
# Ensure the call is removed from the connection's calls hash, otherwise it will leak:
159159
connection.calls.delete(id)
160-
160+
161161
# If the queue is closed, we don't need to send a finished message:
162162
unless call.closed?
163163
# If the above write failed, this is likely to fail too, and we can safely ignore it.

test/async/container/connection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def dispatch(call)
4040
expect(connection.calls).to be(:empty?)
4141
end
4242
end
43-
43+
4444
with subject::Call do
4545
let(:test_call) {Async::Container::Supervisor::Connection::Call.new(connection, 1, {do: :test, data: "value"})}
4646

0 commit comments

Comments
 (0)