Skip to content

Commit 2abb8dd

Browse files
Fix typo in field name in CommunicationComponentDiagnostic
The field name `vendor_error_code` in the `CommunicationComponentDiagnostic` message was incorrectly named, since it is not an error code but a more general diagnostic code. This commit renames the field to `vendor_diagnostic_code` to better reflect its purpose. Signed-off-by: Tiyash Basu <[email protected]>
1 parent a5188c0 commit 2abb8dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proto/frequenz/api/common/v1/microgrid/communication_components/communication_components.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ message CommunicationComponentDiagnostic {
159159
// A standardized diagnostic code representing the category of the issue.
160160
CommunicationComponentDiagnosticCode diagnostic_code = 1;
161161

162-
// Optional vendor-provided error code for more granular diagnostics.
163-
optional uint32 vendor_error_code = 2;
162+
// Optional vendor-provided code for more granular diagnostics.
163+
optional uint32 vendor_diagnostic_code = 2;
164164

165165
// Human-readable message providing additional context.
166166
string message = 3;

0 commit comments

Comments
 (0)