We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55a1ac6 commit 5db543eCopy full SHA for 5db543e
servicex_codegen/post_operation.py
@@ -90,9 +90,11 @@ def post(self):
90
body["code"], cache_path=tempdir)
91
92
zip_data = self.stream_generated_code(generated_code_result)
93
+ # code gen transformer returns the default transformer image mentioned in the config file
94
transformer_image = current_app.config.get("TRANSFORMER_SCIENCE_IMAGE")
95
# Send the response back to you-know-what.
96
97
+ # MultipartEncoder library takes multiple types of data fields and merge them into a multipart mime data type
98
m = MultipartEncoder(
99
fields={'transformer_image': transformer_image,
100
'zip_data': zip_data}
0 commit comments