eric-maynard commented on code in PR #404:
URL: https://github.com/apache/polaris/pull/404#discussion_r1821169364
##########
regtests/client/python/cli/command/__init__.py:
##########
@@ -86,7 +94,9 @@ def options_get(key, f=lambda x: x):
catalog_name=options_get(Arguments.CATALOG),
catalog_role_name=options_get(Arguments.CATALOG_ROLE),
principal_role_name=options_get(Arguments.PRINCIPAL_ROLE),
- properties=properties
+ properties={} if properties is None else properties,
+ set_properties={} if set_properties is None else
set_properties,
+ remove_properties=[] if remove_properties is None else
remove_properties
)
elif options.command == Commands.PRIVILEGES:
from cli.command.privileges import PrivilegesCommand
Review Comment:
the namespaces command seems to be missing the `set_properties` +
`remove_properties `changes
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]