Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pawel plesniak/detector id in status #33

Merged
merged 2 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}