Skip to content

Commit

Permalink
Update README.md (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannnylo authored May 11, 2024
1 parent 3cd832e commit 854aab4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,11 @@ To configure the list of jobs
```ruby
Sidekiq::Belt.configure do |config|
config.run_jobs = [
{ class: "AWorker", args: ["a"] },
{ class: "BWorker" },
{ class: "CWorker", args: ["a"], group: "Etc" },
{ class: "DWorker", args: ["a"], group: "Etc" }
{ class: "ManualClearDataWorker", args: ['a'] },
{ class: "ManualDoSomethingWorker", args: ['b'] },
{ class: "FirstOperationalWorker", args: ['c'], group: 'Operational' },
{ class: "SecondOperationalWorker", args: ['d'], group: 'Operational' },
{ class: "AnotherGroupWorker", args: ['e'], group: 'Group with a long name' }
]
end
```
Expand Down

0 comments on commit 854aab4

Please sign in to comment.