Skip to content

Commit 0adf268

Browse files
committed
fix(health): update service health check to return healthy status for registered services
1 parent 72e57bb commit 0adf268

File tree

17 files changed

+23
-20
lines changed

17 files changed

+23
-20
lines changed

cmd/forge/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ require (
9090
github.com/xdg-go/stringprep v1.0.4 // indirect
9191
github.com/xraph/confy v0.5.0 // indirect
9292
github.com/xraph/go-utils v1.1.1 // indirect
93-
github.com/xraph/vessel v1.0.1 // indirect
93+
github.com/xraph/vessel v1.0.2 // indirect
9494
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
9595
go.mongodb.org/mongo-driver v1.17.4 // indirect
9696
go.uber.org/multierr v1.11.0 // indirect

cmd/forge/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ github.com/xraph/confy v0.5.0 h1:7dK3hx3MQKlNPK9mFSm07iyU05kUnx6um8d86/gyajg=
308308
github.com/xraph/confy v0.5.0/go.mod h1:/uhVfKibPR+kn7MI9LkVVekk84NP0sxsKZ9sFQoQ5Kc=
309309
github.com/xraph/go-utils v1.1.1 h1:k5TOQ1qhXLdEX8W5F60mSuPcFOPc8sBsnhmjx/Kpr5g=
310310
github.com/xraph/go-utils v1.1.1/go.mod h1:tZN4SuGy9otCo6dETp7Cvkgyiy0BvaJaZbTBv4Euvo4=
311-
github.com/xraph/vessel v1.0.1 h1:A3T3cE3ze/FYjyyXarmgcWofbmXbB2SdxRs9uF71k/E=
312-
github.com/xraph/vessel v1.0.1/go.mod h1:5hgrMbuczxu2kRIM3iVJ3wPSb6HOvbMhV4nkRFaPNqs=
311+
github.com/xraph/vessel v1.0.2 h1:IeNTwxiFgqH2vW9lh8PNXr1SeGdEc7cxQ6sH7jMokfo=
312+
github.com/xraph/vessel v1.0.2/go.mod h1:5hgrMbuczxu2kRIM3iVJ3wPSb6HOvbMhV4nkRFaPNqs=
313313
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 h1:ilQV1hzziu+LLM3zUTJ0trRztfwgjqKnBWNtSRkbmwM=
314314
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78/go.mod h1:aL8wCCfTfSfmXjznFBSZNN13rSJjlIOI1fUNAtF7rmI=
315315
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=

extensions/cache/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/stretchr/testify v1.11.1
99
github.com/xraph/confy v0.5.0
1010
github.com/xraph/forge v1.4.4
11-
github.com/xraph/vessel v1.0.1
11+
github.com/xraph/vessel v1.0.2
1212
)
1313

1414
require (

extensions/consensus/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/dgraph-io/badger/v4 v4.8.0
99
github.com/hashicorp/consul/api v1.33.0
1010
github.com/xraph/forge v1.4.4
11-
github.com/xraph/vessel v1.0.1
11+
github.com/xraph/vessel v1.0.2
1212
go.etcd.io/bbolt v1.4.3
1313
google.golang.org/grpc v1.78.0
1414
google.golang.org/protobuf v1.36.11

extensions/cron/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/google/uuid v1.6.0
99
github.com/robfig/cron/v3 v3.0.1
1010
github.com/xraph/forge v1.4.4
11-
github.com/xraph/vessel v1.0.1
11+
github.com/xraph/vessel v1.0.2
1212
gopkg.in/yaml.v3 v3.0.1
1313
)
1414

extensions/database/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/uptrace/bun/dialect/sqlitedialect v1.2.15
1919
github.com/xraph/forge v1.4.4
2020
github.com/xraph/go-utils v1.1.1
21-
github.com/xraph/vessel v1.0.1
21+
github.com/xraph/vessel v1.0.2
2222
go.mongodb.org/mongo-driver v1.17.4
2323
)
2424

extensions/kafka/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/xdg-go/scram v1.1.2
88
github.com/xraph/confy v0.5.0
99
github.com/xraph/forge v1.4.4
10-
github.com/xraph/vessel v1.0.1
10+
github.com/xraph/vessel v1.0.2
1111
)
1212

1313
require (

extensions/mcp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/xraph/confy v0.5.0
77
github.com/xraph/forge v1.4.4
88
github.com/xraph/go-utils v1.1.1
9-
github.com/xraph/vessel v1.0.1
9+
github.com/xraph/vessel v1.0.2
1010
)
1111

1212
require (

extensions/mqtt/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/eclipse/paho.mqtt.golang v1.5.0
77
github.com/xraph/confy v0.5.0
88
github.com/xraph/forge v1.5.0
9-
github.com/xraph/vessel v1.0.1
9+
github.com/xraph/vessel v1.0.2
1010
)
1111

1212
require (

extensions/orpc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.25.7
44

55
require (
66
github.com/xraph/forge v1.2.0
7-
github.com/xraph/vessel v1.0.1
7+
github.com/xraph/vessel v1.0.2
88
)
99

1010
require (

0 commit comments

Comments
 (0)