Skip to content

Commit 5489b69

Browse files
committed
feat(helper): actively check version on start
1 parent 6dadbdf commit 5489b69

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docarray/helper.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,4 @@ def is_latest_version(package: str = None, github_repo: str = None) -> None:
493493
:param github_repo: repo name that contains CHANGELOG if none then the same as package name
494494
"""
495495

496-
threading.Thread(
497-
target=_version_check, daemon=True, args=(package, github_repo)
498-
).start()
496+
threading.Thread(target=_version_check, args=(package, github_repo)).start()

0 commit comments

Comments
 (0)