Skip to content

Commit

Permalink
Merge pull request #45 from opus-codium/fix-ruby-3.2
Browse files Browse the repository at this point in the history
Fix task execution with Ruby 3.2
  • Loading branch information
smortex authored Jan 9, 2024
2 parents 98ce83e + d551e08 commit 6f4052c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/utils/application_factory.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def self.all

def self.find(application, environment)
res = configuration_metadata_for(application, environment).map do |spec|
Application.new(spec)
Application.new(**spec)
end

raise "No match for application #{application} in environment #{environment}" if res.empty?
Expand Down

0 comments on commit 6f4052c

Please sign in to comment.