We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b852c63 commit e9bce37Copy full SHA for e9bce37
pyclowder/connectors.py
@@ -813,7 +813,7 @@ def start_thread(self):
813
self.channel.exchange_declare(exchange='extractors', exchange_type='fanout', durable=True)
814
815
self.thread = threading.Thread(target=self.send_heartbeat)
816
- self.thread.setDaemon(True)
+ self.thread.daemon = True
817
self.thread.start()
818
819
def stop_thread(self):
@@ -879,7 +879,7 @@ def start_thread(self, json_body):
879
}
880
"""
881
self.thread = threading.Thread(target=self._process_message, args=(json_body,))
882
883
884
885
def is_finished(self):
0 commit comments