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
The call to resolveHostname was moved into the constructor but it should be made after the environment has been assigned. There is no way to provide an environment before the constructor is called so resolveHostname will never resolve LOCALSTACK_HOST
The text was updated successfully, but these errors were encountered:
The assignment in resolveHostname of the last network alias to the LOCALSTACK_HOST env var was being made directly, without calling withEnvironment, and was bypassing some code as a result.
The fix to allow wait strategy overrides broke hostname resolution. @cristianrgreco
Originally posted by @joebowbeer in #712 (comment)
The call to
resolveHostname
was moved into the constructor but it should be made after the environment has been assigned. There is no way to provide an environment before the constructor is called soresolveHostname
will never resolveLOCALSTACK_HOST
The text was updated successfully, but these errors were encountered: