Skip to content

Commit

Permalink
Merge pull request #33 from DUNE-DAQ/PawelPlesniak/DetectorIDInStatus
Browse files Browse the repository at this point in the history
Pawel plesniak/detector id in status
  • Loading branch information
plasorak authored Nov 15, 2024
2 parents a07226f + d2ab89a commit 91dbf64
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
8 changes: 4 additions & 4 deletions python_not_for_dunedaq/druncschema/request_response_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions schema/druncschema/controller.proto
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ message FSMCommandsDescription {
}


message Status {
message Status { // Contains dynamic system descriptors
string state = 2;
string sub_state = 3;
bool in_error = 4;
bool included = 5;
}
}
10 changes: 6 additions & 4 deletions schema/druncschema/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ message CommandDescription {
}


message Description {
message Description { // Contains static system descriptors
string type = 1;
string name = 2;
optional string session = 3;
repeated CommandDescription commands = 4;
optional google.protobuf.Any broadcast = 5;
string endpoint = 3;
optional string info = 4;
optional string session = 5;
repeated CommandDescription commands = 6;
optional google.protobuf.Any broadcast = 7;
}

0 comments on commit 91dbf64

Please sign in to comment.