Skip to content

Commit e5f16a1

Browse files
committed
Log info about AWS S3 endpoint during start up
1 parent 4cf1750 commit e5f16a1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ui/operator_ui/main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@
104104
getenv('USE_AWS_INSTANCE_PROFILE', 'false').lower() != 'false'
105105
)
106106

107+
AWS_ENDPOINT = getenv('AWS_ENDPOINT')
108+
107109
tokens.configure()
108110
tokens.manage('read-only')
109111
tokens.start()
@@ -1055,6 +1057,7 @@ def main(port, secret_key, debug, clusters: list):
10551057
logger.info(f'Tokeninfo URL: {TOKENINFO_URL}')
10561058
logger.info(f'Use AWS instance_profile: {USE_AWS_INSTANCE_PROFILE}')
10571059
logger.info(f'WAL-E S3 endpoint: {WALE_S3_ENDPOINT}')
1060+
logger.info(f'AWS S3 endpoint: {AWS_ENDPOINT}')
10581061

10591062
if TARGET_NAMESPACE is None:
10601063
@on_exception(

0 commit comments

Comments
 (0)