Skip to content

Commit

Permalink
v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmaslanka committed May 21, 2021
1 parent b69124e commit 32659b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,10 @@ and is currently set to 128 kB.

* fixed a bug related with writing symlink name to too short a buffer
* fixed a bug wherein a filesystem required as ls -R /mount/zoo to load all symlinks
* fixed a bug wherein enabling DEBUG mode would not result in DEBUG-level printfs from zookeeper-fuse
* Maximum file size increased to 128 kB

# v1.3

* Maximum file size increased to 128 kB
* fixed a bug wherein directories would
be listed as files

Expand Down
2 changes: 1 addition & 1 deletion zookeeper_plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.4a3'
__version__ = '1.4'

2 changes: 1 addition & 1 deletion zookeeper_plugin/volumes.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def mount(self) -> None:
if self.auth:
commandline.extend(['--zooAuthentication', self.auth])
if DEBUG:
commandline.extend(['--logLevel', 'TRACE'])
commandline.extend(['--logLevel', 'DEBUG'])
logger.debug('calling subprocess.Popen(%s, stdin=DEVNULL, preexec_fn=os.setsid, %s)',
commandline, kwargs)
self.process = subprocess.Popen(commandline, stdin=subprocess.DEVNULL,
Expand Down

0 comments on commit 32659b5

Please sign in to comment.