Skip to content

Commit

Permalink
Merge branch 'main' into better-client-exit
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbvll authored Jun 9, 2024
2 parents 8ebe7d7 + 111eecc commit dee4bfe
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/py/flwr/client/app.py
Original file line number Diff line number Diff line change
@@ -344,7 +344,6 @@ def _on_backoff(retry_state: RetryState) -> None:
message.metadata.run_id,
message.metadata.group_id,
)

log(
INFO,
"Received: %s message %s",
@@ -390,8 +389,7 @@ def _on_backoff(retry_state: RetryState) -> None:
# Don't update/change NodeState

e_code = ErrorCode.CLIENT_APP_RAISED_EXCEPTION
# Reason example:
# "<class 'ZeroDivisionError'>:<'division by zero'>"
# Ex fmt: "<class 'ZeroDivisionError'>:<'division by zero'>"
reason = str(type(ex)) + ":<'" + str(ex) + "'>"
exc_entity = "ClientApp"
if isinstance(ex, LoadClientAppError):

0 comments on commit dee4bfe

Please sign in to comment.