Skip to content

Commit

Permalink
fix _init_cmd() create Thread as daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed Apr 6, 2024
1 parent 7541061 commit f178a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deltabot_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def configure() -> None:
accid = cli.get_or_create_account(bot.rpc, args.addr)

bot.logger.info("Starting configuration process...")
task = Thread(target=configure)
task = Thread(target=configure, daemon=True)
task.start()
pbar = ConfigProgressBar()
while True:
Expand Down

0 comments on commit f178a5b

Please sign in to comment.