Skip to content

Commit 5fc51da

Browse files
committed
print statements for debug
1 parent b093416 commit 5fc51da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

servicex_codegen/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def create_app(test_config=None, provided_translator=None):
5959
app.config.from_mapping(test_config)
6060
else:
6161
if 'CODEGEN_CONFIG_FILE' in os.environ:
62+
print('Read Transformer Image on Init: ',os.environ.get('TRANSFORMER_SCIENCE_IMAGE'))
6263
app.config.from_envvar('CODEGEN_CONFIG_FILE')
6364

6465
with app.app_context():

servicex_codegen/post_operation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def post(self):
9393
# code gen transformer returns the default transformer image mentioned in
9494
# the config file
9595
transformer_image = os.environ.get('TRANSFORMER_SCIENCE_IMAGE')
96-
print('Transformer Image: ',transformer_image)
96+
print('Transformer Image: ', transformer_image)
9797

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

0 commit comments

Comments
 (0)