You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2019/01/29 05:10:01 UTC

[GitHub] merlimat opened a new pull request #3470: Fixed watch-znode script to work in Py2

merlimat opened a new pull request #3470: Fixed watch-znode script to work in Py2
URL: https://github.com/apache/pulsar/pull/3470
 
 
   ### Motivation
   
   `watch-znode.py` script used in integration tests is calling : 
   
   ```python
   print('xyx', file=sys.stderr)
   ```
   This is only supported in Python3 but not on Python2
   
   Changing to a common compatible format:
   
   ```python
   sys.stderr.write('xyz\n')
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services