Skip to content

Commit

Permalink
DF/091: bug fix (incorrect submodule name).
Browse files Browse the repository at this point in the history
The bug appeared due to the merge of two too long-living branches:
* the submodule was moved in the `pyDKB` branch (5e3003e), and
* used for the second time in `master` (a0226ff).

It tells us, by the way, that the better idea would be to import this
module in the beginning, as long as it is used more than one time...
  • Loading branch information
mgolosova committed Jun 6, 2019
1 parent 472ab51 commit c0819c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utils/Dataflow/091_datasetsRucio/datasets_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def process_input_ds(stage, message):
except RucioException:
data[mfields['bytes']] = -1
data[mfields['deleted']] = True
stage.output(pyDKB.dataflow.messages.JSONMessage(data))
stage.output(pyDKB.dataflow.communication.messages.JSONMessage(data))

return True

Expand Down

0 comments on commit c0819c3

Please sign in to comment.