You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 14, 2018. It is now read-only.
if container.get 'env'
config.Env = container.get 'env'
if not env?
config.Env = []
env is never assigned and there for will always be falsy, config.Env will always be assigned new array, which explains why we see VM_IPADDR in our environment vars.
The next line successfully assigned the variable by pushing into the list.
Pretty sure it's a list of strings:
Double check and add example to documents.
The text was updated successfully, but these errors were encountered: