From 73d3649788a6d8ba263e6ba42aede076ca6d4333 Mon Sep 17 00:00:00 2001 From: Joe Kaufeld Date: Tue, 10 Oct 2023 22:41:56 -0400 Subject: [PATCH] change deploy command to not try to interact with reddit bots anymore --- bubbles/commands/deploy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bubbles/commands/deploy.py b/bubbles/commands/deploy.py index ead3f5b..71f39e0 100644 --- a/bubbles/commands/deploy.py +++ b/bubbles/commands/deploy.py @@ -161,12 +161,12 @@ def start_all_tor_bots_but_blossom() -> None: if service.lower() == "blossom": # As the blossom deploys take longer, let's try stopping everyone else, # deploying blossom, and then starting everyone again. - stop_all_tor_bots_but_blossom() + # stop_all_tor_bots_but_blossom() migrate() restart_service() - if service.lower() == "blossom": - start_all_tor_bots_but_blossom() + # if service.lower() == "blossom": + # start_all_tor_bots_but_blossom() StatusMessage.add_new_context_step(f"Successfully deployed {service}!") StatusMessage.step_is_info()