Skip to content

Commit

Permalink
fix a log error in PulsarAuthorizationProvider (#14204)
Browse files Browse the repository at this point in the history
### Motivation


There is a log information error in PulsarAuthorizationProvider

### Modifications

change the log information

### Verifying this change

- Make sure that the change passes the CI checks.


### Does this pull request potentially affect one of the following parts:

*If `yes` was chosen, please highlight the changes*

  - Dependencies (does it add or upgrade a dependency): (no)
  - The public API: ( no)
  - The schema: (no )
  - The default values of configurations: (no)
  - The wire protocol: (no)
  - The rest endpoints: (no)
  - The admin cli options: (no)
  - Anything that affects deployment: (no)

### Documentation

- [x] `no-need-doc`
  • Loading branch information
TakaHiR07 committed Feb 11, 2022
1 parent 2a8fda4 commit 58af7a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ private CompletableFuture<Void> updateSubscriptionPermissionAsync(NamespaceName
namespace, throwable);
} else {
log.info("[{}] Successfully granted access for role {} for sub = {}", namespace,
subscriptionName, roles);
roles, subscriptionName);
}
});
}
Expand Down

0 comments on commit 58af7a5

Please sign in to comment.