Skip to content

Commit

Permalink
Merge branch 'release/2.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Feb 3, 2021
2 parents 3c5ea79 + ad33bc1 commit 061837e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install:
- "%PYTHON% -m pip install -U tox setuptools wheel"
- "%PYTHON% -m pip install -Ue .[tests]"

build: off # Not a C# project, build stuff at the test step instead.
build: false # Not a C# project, build stuff at the test step instead.

test_script:
- "%PYTHON% -m tox"
Expand Down
2 changes: 1 addition & 1 deletion portalocker/__about__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__package_name__ = 'portalocker'
__author__ = 'Rick van Hattem'
__email__ = 'wolph@wol.ph'
__version__ = '2.2.0'
__version__ = '2.2.1'
__description__ = '''Wraps the portalocker recipe for easy usage'''
__url__ = 'https://github.com/WoLpH/portalocker'

2 changes: 1 addition & 1 deletion portalocker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#: Current author's email address
__email__ = __about__.__email__
#: Version number
__version__ = '2.2.0'
__version__ = '2.2.1'
#: Package description for Pypi
__description__ = __about__.__description__
#: Package homepage
Expand Down
1 change: 0 additions & 1 deletion portalocker/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ def check_or_kill_lock(self, connection, timeout):
connection.client_kill_filter(client_.get('id'))

def release(self):
logger.error('releasing: %r', self.thread)
if self.thread: # pragma: no branch
self.thread.stop()
self.thread.join()
Expand Down

0 comments on commit 061837e

Please sign in to comment.