Skip to content

Commit

Permalink
remove any from the proto for compatibility with LV
Browse files Browse the repository at this point in the history
  • Loading branch information
chicco785 committed Mar 13, 2024
1 parent 562ec8c commit 7626f21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto/platform/v1/task.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

import "google/protobuf/any.proto";
//import "google/protobuf/any.proto";

/* <!-- markdownlint-disable -->
Messages to support coordination among processes/services in the platform.
Expand Down Expand Up @@ -36,7 +36,7 @@ enum NotificationType {

message Parameter {
string name = 1; //The parameter name
google.protobuf.Any value = 2; //The parameter value
string value = 2; //The parameter value
}

/* A task message.
Expand Down

1 comment on commit 7626f21

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.50.

Benchmark suite Current: 7626f21 Previous: 562ec8c Ratio
BenchmarkDataSerialization 476.2 ns/op 310.4 ns/op 1.53
BenchmarkGridEventSerialization 1554 ns/op 1012 ns/op 1.54
BenchmarkEquipmentFaultSerialization 972 ns/op 639.1 ns/op 1.52

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.