We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b598e9b commit 9fdfe60Copy full SHA for 9fdfe60
3 files changed
Gemfile.lock
@@ -1,7 +1,7 @@
1
PATH
2
remote: .
3
specs:
4
- stack-service-base (0.0.84)
+ stack-service-base (0.0.86)
5
async
6
debug
7
dotenv
lib/stack-service-base.rb
@@ -48,8 +48,9 @@ def connect_to_hosts(*args)
48
stack_name = ENV['STACK_NAME'] || 'undefined_stack'
49
service_name = ENV['STACK_SERVICE_NAME'] || 'undefined_service'
50
ar = args.dup
51
- ar[0] ||= {}
52
- ar[0][:fallback_application_name] ||= "#{stack_name}_#{service_name}"
+ unless ar[0].is_a? String
+ ar[0][:fallback_application_name] ||= "#{stack_name}_#{service_name}"
53
+ end
54
super(*ar)
55
end
56
})
lib/stack-service-base/version.rb
@@ -1,3 +1,3 @@
module StackServiceBase
- VERSION = '0.0.85'
+ VERSION = '0.0.86'
0 commit comments