Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit deceac4

Browse files
Addressed review comments.
Signed-off-by: Shriya Deshmukh <[email protected]>
1 parent 4adbdf4 commit deceac4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rgw/setup/rgw.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def _create_rgw_user(conf: MappedConf):
423423
retry_count = 0
424424
rc = -1
425425
while (retry_count < const.USER_CREATION_MAX_RETRY_COUNT):
426-
Log.info(f'Creating admin user, command : {create_usr_cmd}.')
426+
Log.info(f'Creating admin user.')
427427
_, err, rc, = SimpleProcess(create_usr_cmd).run(timeout=const.ADMIN_CREATION_TIMEOUT)
428428
if rc == 0:
429429
Log.info(f'RGW admin user {user_name} is created.')
@@ -441,7 +441,7 @@ def _create_rgw_user(conf: MappedConf):
441441
retry_count = retry_count + 1
442442
continue
443443
else:
444-
Log.error(f'"{create_usr_cmd}" failed with error {err}.')
444+
Log.error(f'RGW admin user creation failed with error {err}.')
445445
break
446446

447447
return rc
@@ -984,7 +984,7 @@ def _update_svc_data_path_value(conf: MappedConf, client_section: str):
984984
f'at {client_section} section')
985985
Conf.set(Rgw._conf_idx, f'{client_section}>{const.SVC_DATA_PATH_KEY}', str(confstore_data_path_value))
986986
else:
987-
Log.debug(f'Key: {const.SVC_DATA_PATH_KEY} is missing from GConf,'
987+
Log.info(f'Key: {const.SVC_DATA_PATH_KEY} is missing from GConf,'
988988
f'hence using default the value:"{data_path_default_value}".')
989989
Conf.set(Rgw._conf_idx, f'{client_section}>{const.SVC_DATA_PATH_KEY}', str(data_path_default_value))
990990

0 commit comments

Comments
 (0)