Skip to content

Commit

Permalink
CV2-3551 drop prints
Browse files Browse the repository at this point in the history
  • Loading branch information
DGaffney committed Aug 1, 2023
1 parent 2d33638 commit fc2191a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/queue/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,10 @@ def safely_respond(self, model: Model) -> Tuple[List[Dict[str, str]], List[Dict[
Return responses if no failure.
"""
messages = self.receive_messages(model.BATCH_SIZE)
print("Current message batch: "+str(messages))
try:
responses = model.respond(copy.deepcopy(messages))
except:
responses = []
print("Current response batch: "+str(responses))
return messages, responses

def fingerprint(self, model: Model):
Expand Down

0 comments on commit fc2191a

Please sign in to comment.