MonkeyCanCode commented on code in PR #931:
URL: https://github.com/apache/polaris/pull/931#discussion_r1942006500


##########
regtests/client/python/cli/command/__init__.py:
##########
@@ -123,6 +123,13 @@ def options_get(key, f=lambda x: x):
                 location=options_get(Arguments.LOCATION),
                 properties=properties
             )
+        elif options.command == Commands.PROFILES:
+            from cli.command.profiles import ProfilesCommand
+            subcommand = options_get(f'{Commands.PROFILES}_subcommand')
+            command = ProfilesCommand(
+                subcommand,
+                profile_name=options_get(Arguments.PROFILE)
+            )

Review Comment:
   Sounds good. If no concern with introduce another global env variable, I 
will add it later tonight or later this week.



-- 
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]

Reply via email to