lordgamez commented on a change in pull request #1076:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1076#discussion_r647469084



##########
File path: docker/test/integration/minifi/core/DockerTestDirectoryBindings.py
##########
@@ -77,6 +77,7 @@ def put_file_contents(file_abs_path, contents):
         logging.info('Writing %d bytes of content to file: %s', len(contents), 
file_abs_path)
         with open(file_abs_path, 'ab') as test_input_file:
             test_input_file.write(contents)
+        os.chmod(file_abs_path, 0o0777)

Review comment:
       In python that syntax cannot be used.
   ```
       a = 0777
              ^
   SyntaxError: leading zeros in decimal integer literals are not permitted; 
use an 0o prefix for octal integers
   ```




-- 
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to