From 0791bb2b69dea5c305c718a3031bf6d2b8475028 Mon Sep 17 00:00:00 2001 From: Jannasch Date: Fri, 22 Nov 2024 14:12:17 +0100 Subject: [PATCH] implement review remark --- src/t2iapi/device/service.proto | 2 +- src/t2iapi/device/types.proto | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/t2iapi/device/service.proto b/src/t2iapi/device/service.proto index a886bf0..caa16b4 100644 --- a/src/t2iapi/device/service.proto +++ b/src/t2iapi/device/service.proto @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the MIT License. -Copyright (c) 2022 Draegerwerk AG & Co. KGaA. +Copyright (c) 2022, 2024 Draegerwerk AG & Co. KGaA. SPDX-License-Identifier: MIT */ diff --git a/src/t2iapi/device/types.proto b/src/t2iapi/device/types.proto index e439f47..0db07ac 100644 --- a/src/t2iapi/device/types.proto +++ b/src/t2iapi/device/types.proto @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the MIT License. -Copyright (c) 2022 Draegerwerk AG & Co. KGaA. +Copyright (c) 2022, 2024 Draegerwerk AG & Co. KGaA. SPDX-License-Identifier: MIT */ @@ -85,6 +85,6 @@ Represents a container for MDIB version attributes. */ message MdibVersion { string sequence_id = 1; // SequenceId when finishing the rpc - uint64 instance_id = 2; // InstanceId when finishing the rpc - uint64 mdib_version = 3; // MdibVersion when finishing the rpc + uint64 mdib_version = 2; // MdibVersion when finishing the rpc + optional google.protobuf.UInt64Value instance_id = 3; // InstanceId when finishing the rpc }