Skip to content

Commit

Permalink
directly read from env var
Browse files Browse the repository at this point in the history
  • Loading branch information
Prajwal Kiran Kumar authored and Prajwal Kiran Kumar committed Feb 5, 2023
1 parent e9883e1 commit 7c7c156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servicex_codegen/post_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def post(self):
zip_data = self.stream_generated_code(generated_code_result)
# code gen transformer returns the default transformer image mentioned in
# the config file
transformer_image = current_app.config.get("TRANSFORMER_SCIENCE_IMAGE")
transformer_image = os.environ.get('TRANSFORMER_SCIENCE_IMAGE')

# MultipartEncoder library takes multiple types of data fields and merge
# them into a multipart mime data type
Expand Down

0 comments on commit 7c7c156

Please sign in to comment.