Skip to content

Commit 3cdba62

Browse files
committed
ci: fix proto linting, use domain service health check
Signed-off-by: Felix Gateru <felix.gateru@gmail.com>
1 parent 878d91f commit 3cdba62

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/api-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
127127
# Check if services are responding
128128
for i in {1..30}; do
129-
if curl -f -s http://localhost:9002/health > /dev/null 2>&1; then
129+
if curl -f -s http://localhost:9003/health > /dev/null 2>&1; then
130130
echo "Services are ready!"
131131
break
132132
fi

internal/proto/groups/v1/groups.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ option go_package = "github.com/absmach/supermq/api/grpc/groups/v1";
1414
service GroupsService {
1515
rpc RetrieveEntity(common.v1.RetrieveEntityReq)
1616
returns (common.v1.RetrieveEntityRes){}
17-
rpc DeleteDomainGroups(common.v1.DeleteDomainEntitiesReq)
17+
18+
rpc DeleteDomainGroups(common.v1.DeleteDomainEntitiesReq)
1819
returns (common.v1.DeleteDomainEntitiesRes) {}
1920
}

0 commit comments

Comments
 (0)