Skip to content

Commit 8919a3f

Browse files
committed
Comply with RuboCop
1 parent 810e4ad commit 8919a3f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

lib/workhorse/poller.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Poller
1515

1616
# @return [Workhorse::Worker] The worker this poller serves
1717
attr_reader :worker
18-
18+
1919
# @return [Arel::Table] The jobs table for query building
2020
attr_reader :table
2121

lib/workhorse/pool.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module Workhorse
1010
class Pool
1111
# @return [Mutex] Synchronization mutex for thread safety
1212
attr_reader :mutex
13-
13+
1414
# @return [Concurrent::AtomicFixnum] Thread-safe counter of active threads
1515
attr_reader :active_threads
1616

lib/workhorse/worker.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ class Worker
2424

2525
# @return [Array<Symbol>] The queues this worker processes
2626
attr_reader :queues
27-
27+
2828
# @return [Symbol] Current worker state (:initialized, :running, :shutdown)
2929
attr_reader :state
30-
30+
3131
# @return [Integer] Number of threads in the worker pool
3232
attr_reader :pool_size
33-
33+
3434
# @return [Integer] Polling interval in seconds
3535
attr_reader :polling_interval
36-
36+
3737
# @return [Mutex] Synchronization mutex for thread safety
3838
attr_reader :mutex
39-
39+
4040
# @return [Logger, nil] Optional logger instance
4141
attr_reader :logger
42-
42+
4343
# @return [Workhorse::Poller] The poller instance
4444
attr_reader :poller
4545

0 commit comments

Comments
 (0)