Refinery problem fetching console data - no such file or directory
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Doberman |
New
|
Undecided
|
Unassigned |
Bug Description
Darren had asked me to open a bug for this.
Refinery runs into this when fetching console data:
2015-04-06 13:06:43,120 [INFO] doberman.analysis: Problem fetching console data for pl 2969ea14-
2015-04-06 13:06:45,949 [INFO] doberman.analysis: Problem fetching console data for pl 5e3b2c9b-
2015-04-06 13:06:49,100 [INFO] doberman.analysis: Problem fetching console data for pl 6a4f773a-
2015-04-06 13:06:52,497 [INFO] doberman.analysis: Problem fetching console data for pl 3344b623-
2015-04-06 13:06:55,940 [INFO] doberman.analysis: Problem fetching console data for pl 00ad5330-
2015-04-06 13:06:59,469 [INFO] doberman.analysis: Problem fetching console data for pl b7971c54-
2015-04-06 13:07:02,552 [INFO] doberman.analysis: Problem fetching console data for pl 2fc0879a-
2015-04-06 13:07:05,789 [INFO] doberman.analysis: Problem fetching console data for pl a2dd4c84-
2015-04-06 13:07:09,140 [INFO] doberman.analysis: Problem fetching console data for pl f37cee7b-
This is what I think the problem is:
In unify():
==> rename = "{}_console.
Which is getting passed to:
def download_
A boolean is expected but a string is passed
==> self.download_
where params = (job, pipeline_id, build, 'console.txt', op_dir, rename)
Also, in download_
==> if rename:
should be --> if rename == True: