There was an error while loading. Please reload this page.
1 parent 878d91f commit 3cdba62Copy full SHA for 3cdba62
2 files changed
.github/workflows/api-tests.yaml
@@ -126,7 +126,7 @@ jobs:
126
127
# Check if services are responding
128
for i in {1..30}; do
129
- if curl -f -s http://localhost:9002/health > /dev/null 2>&1; then
+ if curl -f -s http://localhost:9003/health > /dev/null 2>&1; then
130
echo "Services are ready!"
131
break
132
fi
internal/proto/groups/v1/groups.proto
@@ -14,6 +14,7 @@ option go_package = "github.com/absmach/supermq/api/grpc/groups/v1";
14
service GroupsService {
15
rpc RetrieveEntity(common.v1.RetrieveEntityReq)
16
returns (common.v1.RetrieveEntityRes){}
17
- rpc DeleteDomainGroups(common.v1.DeleteDomainEntitiesReq)
+
18
+ rpc DeleteDomainGroups(common.v1.DeleteDomainEntitiesReq)
19
returns (common.v1.DeleteDomainEntitiesRes) {}
20
}
0 commit comments