You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The amqp class accesses self to get the parameters, while the redis class uses self.pipeline_args. The amqp pipeline does not receive any parameters because of that bug.
The text was updated successfully, but these errors were encountered:
the arguments given by pipeline_args were not effective, as the
load_configuration methods of the pipeline classes still tried to access
the parameters at self.
also modify the tests to catch a bug like this in the future
fixes#1875
ghost
pushed a commit
that referenced
this issue
Jun 17, 2021
the arguments given by pipeline_args were not effective, as the
load_configuration methods of the pipeline classes still tried to access
the parameters at self.
also modify the tests to catch a bug like this in the future
fixes#1875
the arguments given by pipeline_args were not effective, as the
load_configuration methods of the pipeline classes still tried to access
the parameters at self.
also modify the tests to catch a bug like this in the future
fixes#1875
intelmq/intelmq/lib/pipeline.py
Lines 436 to 457 in e54b470
The amqp class accesses
self
to get the parameters, while the redis class usesself.pipeline_args
. The amqp pipeline does not receive any parameters because of that bug.The text was updated successfully, but these errors were encountered: