Skip to content

Commit

Permalink
Merge pull request #47 from reproio/suppodr-ruby3
Browse files Browse the repository at this point in the history
Support Ruby3
  • Loading branch information
okkez authored Aug 29, 2022
2 parents 8210697 + 89666c7 commit 8f0226d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.7
- 3.0
- 3.1
os:
- ubuntu-latest
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion lib/wrapbox/runner/ecs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def initialize(options)
@propagate_tags = options[:propagate_tags]
@enable_execute_command = options[:enable_execute_command]
if options[:launch_instances]
@instance_manager = Wrapbox::Runner::Ecs::InstanceManager.new(@cluster, @region, options[:launch_instances])
@instance_manager = Wrapbox::Runner::Ecs::InstanceManager.new(@cluster, @region, **options[:launch_instances])
end
@task_waiter = Wrapbox::Runner::Ecs::TaskWaiter.new(cluster: @cluster, region: @region, delay: WAIT_DELAY)

Expand Down

0 comments on commit 8f0226d

Please sign in to comment.