Skip to content

Commit 8fd7992

Browse files
committed
updated error and Controller proto imports
Signed-off-by: dhruv0000 <patel.4@iitj.ac.in>
1 parent 6cb70e0 commit 8fd7992

2 files changed

Lines changed: 99 additions & 89 deletions

File tree

smi-conformance/conformance/conformance.pb.go

Lines changed: 93 additions & 85 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

smi-conformance/conformance/conformance.proto

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
syntax = "proto3";
22
import "google/protobuf/empty.proto";
3-
import "service-mesh-performance/protos/metadata.proto";
3+
import "meshkit/protobuf/common/error.proto";
4+
import "meshkit/protobuf/controller/health.proto";
5+
import "meshkit/protobuf/controller/info.proto";
46
import "service-mesh-performance/protos/service_mesh.proto";
57

68
package smi_conformance;
@@ -29,7 +31,7 @@ message Request {
2931
message Result {
3032
oneof result {
3133
string message = 1;
32-
smp.CommonError error = 2;
34+
common.CommonError error = 2;
3335
}
3436
}
3537
message Detail {
@@ -50,7 +52,7 @@ message Response {
5052
}
5153

5254
service conformanceTesting{
53-
rpc Info (google.protobuf.Empty) returns (smp.ControllerInfo);
54-
rpc Health (google.protobuf.Empty) returns (smp.ControllerHealth);
55+
rpc Info (google.protobuf.Empty) returns (controller.ControllerInfo);
56+
rpc Health (google.protobuf.Empty) returns (controller.ControllerHealth);
5557
rpc RunTest (Request) returns (Response);
5658
}

0 commit comments

Comments
 (0)