Skip to content

Commit c52b414

Browse files
authored
Merge pull request #137 from Keloran/k-branch-2
feat(auth/clerk): Update Clerk secret key names
2 parents 99d3412 + 0fe7335 commit c52b414

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

auth/clerk/clerk.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func (s *System) buildVault() (*Details, error) {
6767
}
6868

6969
if s.Details.Key == "" {
70-
secret, err := vh.GetSecret("clerk_key")
70+
secret, err := vh.GetSecret("clerk-key")
7171
if err != nil {
7272
return clerk, err
7373
}
@@ -77,9 +77,9 @@ func (s *System) buildVault() (*Details, error) {
7777
}
7878

7979
if s.Details.PublicKey == "" {
80-
secret, err := vh.GetSecret("clerk_public_key")
80+
secret, err := vh.GetSecret("clerk-public-key")
8181
if err != nil {
82-
if err.Error() != fmt.Sprint("key: 'clerk_public_key' not found") {
82+
if err.Error() != fmt.Sprint("key: 'clerk-public-key' not found") {
8383
return clerk, err
8484
}
8585
}

auth/clerk/clerk_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ func TestBuildGeneric(t *testing.T) {
2727
func TestBuildVault(t *testing.T) {
2828
mockVault := &vaultHelper.MockVaultHelper{
2929
KVSecrets: []vaultHelper.KVSecret{
30-
{Key: "clerk_key", Value: "testKey"},
31-
{Key: "clerk_public_key", Value: "testPublicKey"},
30+
{Key: "clerk-key", Value: "testKey"},
31+
{Key: "clerk-public-key", Value: "testPublicKey"},
3232
},
3333
}
3434

@@ -46,8 +46,8 @@ func TestBuildVault(t *testing.T) {
4646
func TestBuildVaultNoKey(t *testing.T) {
4747
mockVault := &vaultHelper.MockVaultHelper{
4848
KVSecrets: []vaultHelper.KVSecret{
49-
{Key: "clerk_key", Value: "testKey"},
50-
{Key: "clerk_public_key", Value: "testPublicKey"},
49+
{Key: "clerk-key", Value: "testKey"},
50+
{Key: "clerk-public-key", Value: "testPublicKey"},
5151
},
5252
}
5353

@@ -66,7 +66,7 @@ func TestBuildVaultNoPublicKey(t *testing.T) {
6666
os.Clearenv()
6767
mockVault := &vaultHelper.MockVaultHelper{
6868
KVSecrets: []vaultHelper.KVSecret{
69-
{Key: "clerk_key", Value: "testKey"},
69+
{Key: "clerk-key", Value: "testKey"},
7070
},
7171
}
7272

config_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ func TestClerk(t *testing.T) {
263263
t.Run("clerk with values", func(t *testing.T) {
264264
mockVault := &MockVaultHelper{
265265
KVSecrets: []vaulthelper.KVSecret{
266-
{Key: "clerk_key", Value: "testKey"},
267-
{Key: "clerk_public_key", Value: "testPublicKey"},
266+
{Key: "clerk-key", Value: "testKey"},
267+
{Key: "clerk-public-key", Value: "testPublicKey"},
268268
},
269269
}
270270

database/postgres/database.go

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"fmt"
66
"github.com/jackc/pgx/v5"
77
"strconv"
8+
"strings"
89
"time"
910

1011
"github.com/bugfixes/go-bugfixes/logs"
@@ -176,6 +177,9 @@ func (s *System) GetPGXClient(ctx context.Context) (*pgx.Conn, error) {
176177

177178
client, err := pgx.Connect(ctx, fmt.Sprintf("postgres://%s:%s@%s:%d/%s", s.Details.User, s.Details.Password, s.Details.Host, s.Details.Port, s.Details.DBName))
178179
if err != nil {
180+
if strings.Contains(err.Error(), "operation was canceled") {
181+
return nil, err
182+
}
179183
return nil, logs.Errorf("failed to get db client: %v", err)
180184
}
181185

0 commit comments

Comments
 (0)