We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb54d2e commit b598e9bCopy full SHA for b598e9b
2 files changed
lib/stack-service-base.rb
@@ -47,8 +47,10 @@ def pre_init()
47
def connect_to_hosts(*args)
48
stack_name = ENV['STACK_NAME'] || 'undefined_stack'
49
service_name = ENV['STACK_SERVICE_NAME'] || 'undefined_service'
50
- args[0][:fallback_application_name] ||= "#{stack_name}_#{service_name}"
51
- super *args
+ ar = args.dup
+ ar[0] ||= {}
52
+ ar[0][:fallback_application_name] ||= "#{stack_name}_#{service_name}"
53
+ super(*ar)
54
end
55
})
56
lib/stack-service-base/version.rb
@@ -1,3 +1,3 @@
1
module StackServiceBase
2
- VERSION = '0.0.84'
+ VERSION = '0.0.85'
3
0 commit comments