Skip to content

Commit

Permalink
daemon-grpc: include LYB in the list of supported data encoding formats
Browse files Browse the repository at this point in the history
Signed-off-by: Renato Westphal <[email protected]>
  • Loading branch information
rwestphal committed Jan 9, 2025
1 parent 43923ae commit bbbfb72
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions holo-daemon/src/northbound/client/grpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,11 @@ impl proto::Northbound for NorthboundService {
.collect();

// Fill-in supported data encodings.
let supported_encodings =
vec![proto::Encoding::Json as i32, proto::Encoding::Xml as i32];
let supported_encodings = vec![
proto::Encoding::Json as i32,
proto::Encoding::Xml as i32,
proto::Encoding::Lyb as i32,
];

let reply = proto::CapabilitiesResponse {
version,
Expand Down

0 comments on commit bbbfb72

Please sign in to comment.