Skip to content

Commit

Permalink
Merge pull request #97 from spreiter/feature/deprecation-warning-daemon
Browse files Browse the repository at this point in the history
Update daemonising of scan PVs
xiaoqiangwang authored Mar 8, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 8e72a0c + 8729324 commit 741327a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcaspy/driver.py
Original file line number Diff line number Diff line change
@@ -513,7 +513,7 @@ def __init__(self, name, info):
# scan thread
if self.info.scan > 0:
self.tid = threading.Thread(target=self.scan)
self.tid.setDaemon(True)
self.tid.daemon = True
self.tid.start()

def scan(self):

0 comments on commit 741327a

Please sign in to comment.