We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a04892 commit 0a77b67Copy full SHA for 0a77b67
src/aali/flowkit/__main__.py
@@ -73,15 +73,15 @@ def substitute_empty_values(args):
73
74
def main():
75
"""Run entrypoint for the FlowKit service."""
76
+ # Always parse args, but only use them conditionally
77
+ args = parse_cli_args()
78
+
79
if not CONFIG.extract_config_from_azure_key_vault:
- # Parse the command line arguments
- args = parse_cli_args()
-
80
# Substitute the empty values with configuration values
81
substitute_empty_values(args)
82
83
address = handle_legacy_port_config()
84
- # # Add scheme if missing
+ # Add scheme if missing
85
if not address.startswith(("http://", "https://")):
86
address = "http://" + address
87
host = urlparse(address).hostname or args.host
0 commit comments