Skip to content

Commit

Permalink
FIX: wasnt setting Pipeline.files
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkle committed Apr 10, 2018
1 parent e55f011 commit c5b30bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/middleware/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def __init__(self, jobs=None, files=None, func=None, options=None, date=None):
self.final_jobs = {} # Jobs for every file in the request.
self.cache = [] # For temporary storage of RQ.Jobs.
self.sig = None
self.files = []
self.files = files
self.func = func # Additional attribute for storing pipeline function.
self.options = options
self.signature() # Create & Store a signature for the pipeline.
Expand Down

0 comments on commit c5b30bd

Please sign in to comment.