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


##########
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:
   I am thinking we should support both env variable (global) or implicitly 
pass in. What do u think?



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