Skip to content

Commit

Permalink
Merge pull request #298 from RockefellerArchiveCenter/development
Browse files Browse the repository at this point in the history
Debugs restriction setting
  • Loading branch information
helrond authored Jul 25, 2023
2 parents 7870c51 + 894c3aa commit e31e7a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process_request/routines.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def parse_batch(self, uris, baseurl):
parsed = []
data = self.get_data(uris, baseurl)
for item in data:
submit, reason = self.is_submittable(data[0])
submit, reason = self.is_submittable(item)
parsed.append({"uri": item["uri"], "submit": submit, "submit_reason": reason})
missing_uris = [m for m in uris if m not in [p["uri"] for p in parsed]]
for uri in missing_uris:
Expand Down

0 comments on commit e31e7a9

Please sign in to comment.