Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Haarolean committed Feb 17, 2024
1 parent ed9e2bd commit 6d0e453
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ public boolean isAuditTopic(KafkaCluster cluster, String topic) {
}

public void audit(AccessContext acxt, Signal<?> sig) {
if (auditWriters.isEmpty()) return;
if (auditWriters.isEmpty()) {
return;
}
if (sig.isOnComplete()) {
extractUser(sig)
.doOnNext(u -> sendAuditRecord(acxt, u))
Expand Down

0 comments on commit 6d0e453

Please sign in to comment.