Skip to content

Commit

Permalink
bug fix found by vic --kazu
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuhiro committed Aug 19, 2016
1 parent 012406e commit 0e59b2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion production/v05/job_larcv.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@
if out_project:
out_t=table(out_project)
if not out_t.exist(): out_t.create()
out_t.fill(session_id=jobid,status=1,filepath=record_path)
out_t.fill(session_id=session_id,status=1,filepath=record_path)
3 changes: 2 additions & 1 deletion production/v05/job_merger.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,5 @@
if out_project:
out_t=table(out_project)
if not out_t.exist(): out_t.create()
out_t.fill(session_id=jobid,status=1,filepath=record_path)
out_t.fill(session_id=session_id,status=1,filepath=record_path)

2 changes: 1 addition & 1 deletion production/v05/job_supera.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@
if out_project:
out_t=table(out_project)
if not out_t.exist(): out_t.create()
out_t.fill(session_id=jobid,status=1,filepath=record_path)
out_t.fill(session_id=session_id,status=1,filepath=record_path)

0 comments on commit 0e59b2f

Please sign in to comment.