HalimKim opened a new pull request, #635:
URL: https://github.com/apache/ranger/pull/635

   ## What changes were proposed in this pull request?
   * in db_setup.py script, there's subprocess.Popen function.
   * From python 3, the stdout of Popen instance is byte by default. it means 
it is not str anymore
   * So if you are trying to execute this script, you will see error below
   ```python
   TypeError: a bytes-like object is required, not 'str'
   ```
   * To avoid this problem, simply just add text=True option in Popen()
   
   ## How was this patch tested?
   * Manually Tested.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@ranger.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to