Re: process_executor.py error

2018-10-11 Thread Dave Page
Thanks, applied. On Thu, Oct 11, 2018 at 12:51 PM Usman Muzaffar < usman.muzaf...@enterprisedb.com> wrote: > +++ a little more information for the issue > > > i - The file(log_file) mode was 'ab' due to which it was throwing > concatenation error. > ii- I have change the file opening mode to 'a'

Re: process_executor.py error

2018-10-11 Thread Usman Muzaffar
+++ a little more information for the issue i - The file(log_file) mode was 'ab' due to which it was throwing concatenation error. ii- I have change the file opening mode to 'a' after which the issue is not encountered. The issue can be reproduced as following i) Enable Python 3.6 virtual envir

process_executor.py error

2018-10-11 Thread Usman Muzaffar
Hi Hackers, While running API test cases, i encountered following error in process_executor.py file == fp.write('EXCEPTION::\n{0}'.format(res)) TypeError: a bytes-like object is required, not 'str' ==