Skip to content

Commit

Permalink
grpc: fixed missing value in config events
Browse files Browse the repository at this point in the history
  • Loading branch information
bharnden committed Sep 1, 2023
1 parent 45ffe80 commit acfa316
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/core/api/grpc/wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,12 +1092,12 @@ class ConfigEvent:
data_types: list[int]
data_values: str
captions: str
bitmap: str
possible_values: str
groups: str
iface_id: int
network_id: int
opaque: str
bitmap: str = None

@classmethod
def from_proto(cls, proto: core_pb2.ConfigEvent) -> "ConfigEvent":
Expand Down
1 change: 1 addition & 0 deletions daemon/proto/core/api/grpc/core.proto
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ message ConfigEvent {
int32 iface_id = 10;
int32 network_id = 11;
string opaque = 12;
string bitmap = 13;
}

message ExceptionEvent {
Expand Down

0 comments on commit acfa316

Please sign in to comment.