Skip to content

Commit 4084d3c

Browse files
authored
Change /cluster-info to /cluster (#429)
Fixes #428
1 parent 80d141c commit 4084d3c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

openapi/openapiv2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"application/json"
2020
],
2121
"paths": {
22-
"/cluster-info": {
22+
"/cluster": {
2323
"get": {
2424
"summary": "GetClusterInfo returns information about temporal cluster",
2525
"operationId": "GetClusterInfo",

openapi/openapiv3.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ info:
66
title: ""
77
version: 0.0.1
88
paths:
9-
/cluster-info:
9+
/cluster:
1010
get:
1111
tags:
1212
- WorkflowService

temporal/api/workflowservice/v1/service.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ service WorkflowService {
465465
// GetClusterInfo returns information about temporal cluster
466466
rpc GetClusterInfo(GetClusterInfoRequest) returns (GetClusterInfoResponse) {
467467
option (google.api.http) = {
468-
get: "/cluster-info"
468+
get: "/cluster"
469469
};
470470
}
471471

0 commit comments

Comments
 (0)