Skip to content

Commit 47ea742

Browse files
committed
[core] Add version and instance information to framework info API call
1 parent d470471 commit 47ea742

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

core/protos/o2control.proto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,22 @@ message StatusUpdate {
8383
// Framework
8484
////////////////////////////////////////
8585
message GetFrameworkInfoRequest {}
86+
message Version {
87+
int32 major = 1;
88+
int32 minor = 2;
89+
int32 patch = 3;
90+
string build = 4;
91+
string productName = 5;
92+
string versionStr = 6;
93+
}
8694
message GetFrameworkInfoReply {
8795
string frameworkId = 1;
8896
int32 environmentsCount = 2;
8997
int32 tasksCount = 3;
9098
string state = 4;
9199
int32 hostsCount = 5;
100+
string instanceName = 6;
101+
Version version = 7;
92102
}
93103

94104
// Not implemented yet

0 commit comments

Comments
 (0)