Skip to content

Commit 2419172

Browse files
author
Qian Chen
committed
test14
1 parent 8a067f8 commit 2419172

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sagemaker_mxnet_serving_container/handler_service.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ def __init__(self):
4747

4848
@staticmethod
4949
def _user_module_transformer(model_dir=environment.model_dir):
50-
log.info(schenqian1)
50+
log.info('schenqian1')
5151
log.info(model_dir)
5252
module_name = environment.Environment().module_name
5353
log.info(module_name)
5454
inference_script = model_dir + '/code' + '/{}.py'.format(module_name)
5555
log.info(inference_script)
5656
if os.path.exists(inference_script):
57-
log.info(schenqian2)
57+
log.info('schenqian2')
5858
spec = importlib.util.spec_from_file_location(module_name, inference_script)
59-
log.info(schenqian3)
59+
log.info('schenqian3')
6060
user_module = importlib.util.module_from_spec(spec)
6161
log.info(user_module)
6262
else:

0 commit comments

Comments
 (0)