Compare commits

..

No commits in common. "a85e7d4ee2dc4ced2f35876c06120b1d3b6271c1" and "88fa100c07c7a9046f772b95ca1dbcae3b0cb3df" have entirely different histories.

View File

@ -25,9 +25,9 @@ def call(command: str) -> Response:
def get_hosts() -> list[str]:
if os.getenv("STAGE") == "development":
return list(set(list(configurator.get_config("hosts")) + ["platform.develop.sprinthub.ru"]))
return list(set(configurator.get_config("hosts") + ["platform.develop.sprinthub.ru"]))
else:
return list(set(list(configurator.get_config("hosts")) + ["platform.sprinthub.ru"]))
return list(set(configurator.get_config("hosts") + ["platform.sprinthub.ru"]))
def update_host(host: str) -> bool: