Skip to content

Commit

Permalink
[bridge] Don't log certificates
Browse files Browse the repository at this point in the history
  • Loading branch information
geropl authored and roboquat committed Jun 21, 2022
1 parent ed02a78 commit a921c14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ws-manager-bridge/src/bridge-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class BridgeController {
protected async reconcile() {
return this.reconcileQueue.enqueue(async () => {
const allClusters = await this.getAllWorkspaceClusters();
log.info("reconciling clusters...", { allClusters: Array.from(allClusters.values()) });
log.info("reconciling clusters...", { allClusters: Array.from(allClusters.keys()) });
const toDelete: string[] = [];
try {
for (const [name, bridge] of this.bridges) {
Expand Down

0 comments on commit a921c14

Please sign in to comment.