From 2ecf0b55f90f74a399270ae9f856b8950335f26b Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Sat, 19 Feb 2022 23:06:35 +0200 Subject: [PATCH] Fix clearml-init changing web host after pasting full credentials --- clearml/cli/config/__main__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clearml/cli/config/__main__.py b/clearml/cli/config/__main__.py index ec2256c3..bd27ec3c 100644 --- a/clearml/cli/config/__main__.py +++ b/clearml/cli/config/__main__.py @@ -119,6 +119,8 @@ def main(): if not web_input: web_host = input_url('Web Application Host', web_host) else: + if web_input is True and not web_host: + web_host = host api_host = input_url('API Host', api_host) files_host = input_url('File Store Host', files_host)