Skip to content

Commit

Permalink
revert future changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jafermarq committed Apr 1, 2024
1 parent 22de4e6 commit dc70f02
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/py/flwr/server/superlink/fleet/vce/vce_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

from flwr.client.client_app import ClientApp, LoadClientAppError
from flwr.client.node_state import NodeState
from flwr.common.constant import ErrorCode
from flwr.common.logger import log
from flwr.common.message import Error
from flwr.common.object_ref import load_app
Expand Down Expand Up @@ -95,7 +94,7 @@ async def worker(
log(ERROR, ex)
log(ERROR, traceback.format_exc())
reason = str(type(ex)) + ":<'" + str(ex) + "'>"
error = Error(code=ErrorCode.CLIENT_APP_RAISED_EXCEPTION, reason=reason)
error = Error(code=0, reason=reason)
out_mssg = message.create_error_reply(error=error)

finally:
Expand Down

0 comments on commit dc70f02

Please sign in to comment.