mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
make stepping pipeline queue items mutable
This commit is contained in:
parent
bbf5c49f9a
commit
03ca4b1fd3
@ -106,7 +106,7 @@ class MultipipesStepper:
|
|||||||
for item in items:
|
for item in items:
|
||||||
if type(item) != tuple:
|
if type(item) != tuple:
|
||||||
item = (item,)
|
item = (item,)
|
||||||
queue.append(item)
|
queue.append(list(item))
|
||||||
|
|
||||||
def step(self, name, **kwargs):
|
def step(self, name, **kwargs):
|
||||||
""" Advance pipeline stage. Throws Empty if no data to consume. """
|
""" Advance pipeline stage. Throws Empty if no data to consume. """
|
||||||
|
Loading…
x
Reference in New Issue
Block a user