This commit is contained in:
dbth
2025-01-02 17:20:04 +01:00
parent fc2fa91be8
commit 7b55e279ac
4 changed files with 7 additions and 5 deletions

View File

@@ -112,10 +112,10 @@ class DVMTaskInterface:
pass
def run(self):
stop_threads = False
try:
self.nostr_dvm_thread = Thread(target=self.DVM, args=[self.dvm_config, self.admin_config, lambda: self.stop_threads], daemon=False)
self.nostr_dvm_thread = Thread(target=self.DVM, args=[self.dvm_config, self.admin_config, lambda: stop_threads], daemon=False)
self.nostr_dvm_thread.start()
except BaseException as e:
print("gone")