Skip to content

Commit

Permalink
fix(framework) Use interceptors as an Iterable (#4885)
Browse files Browse the repository at this point in the history
  • Loading branch information
jafermarq authored Jan 30, 2025
1 parent c328d94 commit faa4254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py/flwr/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def init_channel(
interceptors: list[grpc.UnaryUnaryClientInterceptor] = []
if auth_plugin is not None:
auth_plugin.load_tokens()
interceptors = CliUserAuthInterceptor(auth_plugin)
interceptors.append(CliUserAuthInterceptor(auth_plugin))

# Create the gRPC channel
channel = create_channel(
Expand Down

0 comments on commit faa4254

Please sign in to comment.