Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Nathaniel Caza <[email protected]>
  • Loading branch information
EvanMerlock and mastercactapus authored Dec 26, 2024
1 parent a91ca7c commit b098239
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/initstores.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func (app *App) initStores(ctx context.Context) error {

if app.WebhookKeyring == nil {
app.WebhookKeyring, err = keyring.NewDB(ctx, app.cfg.LegacyLogger, app.db, &keyring.Config{
Name: "webhook-keys",
Name: "webhook-signature-keys",
MaxOldKeys: 100,
Keys: app.cfg.EncryptionKeys,
})
Expand Down
2 changes: 1 addition & 1 deletion test/smoke/webhook_signing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type WebhookTestingSign struct {
Signature string
}

func TestWebhookCorrectlySigns(t *testing.T) {
func TestWebhookSigning(t *testing.T) {
t.Parallel()

ch := make(chan WebhookTestingSign, 1)
Expand Down

0 comments on commit b098239

Please sign in to comment.