Skip to content

Commit

Permalink
chore: hardcode a fake url and token for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
d0ugal committed Feb 6, 2025
1 parent 0e3769c commit 5d3d54a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/checks/checks.go
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,10 @@ func (c *Updater) handleChangeBatch(ctx context.Context, changes *sm.Changes, fi
}

for _, tenant := range changes.Tenants {
if tenant.SecretStore.Url == "" {
tenant.SecretStore.Url = "fake-url"
tenant.SecretStore.Token = "fake-token"
}
c.tenantCh <- tenant
}

Expand Down

0 comments on commit 5d3d54a

Please sign in to comment.