Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrede committed Jun 14, 2024
1 parent 5d4212f commit 7422f60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fedn/network/clients/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ def _listen_to_task_stream(self):
self.inbox.put(("validate", request))
elif request.type == fedn.StatusType.INFERENCE and self.config["validator"]:
logger.info("Received inference request for model_id {}".format(request.model_id))
presined_url = json.loads(request.data)
presined_url = presined_url["presigned_url"]
logger.info("Inference presigned URL: {}".format(presined_url))
presigned_url = json.loads(request.data)
presigned_url = presigned_url["presigned_url"]
logger.info("Inference presigned URL: {}".format(presigned_url))
self.inbox.put(("infer", request))
else:
logger.error("Unknown request type: {}".format(request.type))
Expand Down

0 comments on commit 7422f60

Please sign in to comment.