File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -593,10 +593,6 @@ def append(self, value: HostAndPort):
593
593
super ().append (value )
594
594
595
595
596
- def default_gateway_listen () -> List [HostAndPort ]:
597
- return [HostAndPort (host = default_ip , port = constants .DEFAULT_PORT_EDGE )]
598
-
599
-
600
596
def populate_legacy_edge_configuration (
601
597
environment : Mapping [str , str ]
602
598
) -> Tuple [HostAndPort , UniqueHostAndPortList , int ]:
@@ -634,7 +630,7 @@ def legacy_fallback(envar_name: str, default: T) -> T:
634
630
)
635
631
else :
636
632
# use default if gateway listen is not defined
637
- gateway_listen = default_gateway_listen ()
633
+ gateway_listen = [ HostAndPort ( host = default_ip , port = localstack_host_port )]
638
634
639
635
# the actual value of the LOCALSTACK_HOST port now depends on what gateway listen actually listens to.
640
636
if localstack_host_raw is None :
You can’t perform that action at this time.
0 commit comments