Skip to content

Commit

Permalink
MINIFICPP-2446 Fix syntax error in ImageStore.py
Browse files Browse the repository at this point in the history
Closes #1860

Signed-off-by: Martin Zink <[email protected]>
  • Loading branch information
lordgamez authored and martinzink committed Aug 21, 2024
1 parent 76c33cb commit f21a34b
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions docker/test/integration/cluster/ImageStore.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,17 +190,22 @@ def __build_minifi_cpp_image_with_nifi_python_processors(self, python_option):
parse_document_sed_cmd=parse_document_sed_cmd,
chunk_document_sed_cmd=chunk_document_sed_cmd))

return self.__build_image(dockerfile, [os.path.join(self.test_dir, "resources", "python", "RotatingForwarder.py"),
os.path.join(self.test_dir, "resources", "python", "SpecialPropertyTypeChecker.py"),
os.path.join(self.test_dir, "resources", "python", "ProcessContextInterfaceChecker.py"),
os.path.join(self.test_dir, "resources", "python", "CreateFlowFile.py"),
os.path.join(self.test_dir, "resources", "python", "FailureWithAttributes.py"),
os.path.join(self.test_dir, "resources", "python", "RelativeImporterProcessor.py"),
os.path.join(self.test_dir, "resources", "python", "subtractutils.py"),
os.path.join(self.test_dir, "resources", "python", "multiplierutils.py"),
os.path.join(self.test_dir, "resources", "python", "CreateNothing.py"),
os.path.join(self.test_dir, "resources", "python", "FailureWithContent.py"),
os.path.join(self.test_dir, "resources", "python", "TransferToOriginal.py")])
def build_full_python_resource_path(resource):
return os.path.join(self.test_dir, "resources", "python", resource)

return self.__build_image(dockerfile, [
build_full_python_resource_path("RotatingForwarder.py"),
build_full_python_resource_path("SpecialPropertyTypeChecker.py"),
build_full_python_resource_path("ProcessContextInterfaceChecker.py"),
build_full_python_resource_path("CreateFlowFile.py"),
build_full_python_resource_path("FailureWithAttributes.py"),
build_full_python_resource_path("RelativeImporterProcessor.py"),
build_full_python_resource_path("subtractutils.py"),
build_full_python_resource_path("multiplierutils.py"),
build_full_python_resource_path("CreateNothing.py"),
build_full_python_resource_path("FailureWithContent.py"),
build_full_python_resource_path("TransferToOriginal.py"),
])

def __build_http_proxy_image(self):
dockerfile = dedent("""\
Expand Down

0 comments on commit f21a34b

Please sign in to comment.