Skip to content
This repository has been archived by the owner on Aug 15, 2018. It is now read-only.

Commit

Permalink
Add log message when saving jterator handles
Browse files Browse the repository at this point in the history
  • Loading branch information
HACKERMD committed Jun 23, 2017
1 parent 0532f69 commit 57429db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tmserver/jtui/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ def update_project(experiment_id):
data = json.loads(request.data)
project = yaml.load(data['project'])
pipeline_description = PipelineDescription(**project['pipe']['description'])
handles_descriptions = {
h['name']: HandleDescriptions(**h['description'])
for h in project['handles']
}
handles_descriptions = dict()
for h in project['handles']:
logger.info('check handles of module "%s"', h['name'])
handles_descriptions[h['name']] = HandleDescriptions(**h['description'])
jt = ImageAnalysisPipelineEngine(
experiment_id,
pipeline_description=pipeline_description,
Expand Down

0 comments on commit 57429db

Please sign in to comment.