-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle TimeoutExpired exception in process termination
Added exception handling for TimeoutExpired when terminating signal-cli to ensure the process pipes are properly managed. The version number is incremented to 0.5.8.2 to reflect this improvement.
- Loading branch information
Showing
4 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "SignalCliAPi" | ||
version = "0.5.8.1" | ||
version = "0.5.8.2" | ||
authors = [ | ||
{ name="Peter Nearing", email="[email protected]" } | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = SignalCliApi | ||
version = 0.5.8.1 | ||
version = 0.5.8.2 | ||
author = Peter Nearing | ||
author_email = [email protected] | ||
description = A python interface to the signal-cli found at https://github.com/AsamK/signal-cli | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
File: __init__.py | ||
Description: A python3 interface to signal-cli. | ||
""" | ||
__version__: str = '0.5.8.1' | ||
__version__: str = '0.5.8.2' | ||
__author__: str = 'Peter Nearing' | ||
__email__: str = '[email protected]' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters