Skip to content

Commit 83e1653

Browse files
committed
fix error in daemon logic
1 parent 325d1d6 commit 83e1653

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 2.3.3 - 2020-10-02
8+
9+
### Fixed
10+
- Thread of heartbeat was set as daemon after start.
11+
712
## 2.3.2 - 2020-09-24
813

914
### Fixed

pyclowder/connectors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -877,8 +877,8 @@ def start_thread(self, json_body):
877877
}
878878
"""
879879
self.thread = threading.Thread(target=self._process_message, args=(json_body,))
880-
self.thread.start()
881880
self.thread.setDaemon(True)
881+
self.thread.start()
882882

883883
def is_finished(self):
884884
with self.lock:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def description():
99

1010

1111
setup(name='pyclowder',
12-
version='2.3.2',
12+
version='2.3.3',
1313
packages=find_packages(),
1414
description='Python SDK for the Clowder Data Management System',
1515
long_description=description(),

0 commit comments

Comments
 (0)