Skip to content

Commit

Permalink
Fix proto path
Browse files Browse the repository at this point in the history
  • Loading branch information
ladatz committed Jan 24, 2024
1 parent ed3db9e commit 88954b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</ItemGroup>

<ItemGroup>
<Protobuf Include="..\..\..\..\proto\common\v1\common.proto;..\..\..\..\proto\runtime\v1\runtime.proto;..\..\..\..\proto\streaming\v1\streaming.proto" ProtoRoot="..\..\..\..\proto\" GrpcServices="Client" Link="Protos\%(Filename)%(Extension)" />
<Protobuf Include="..\..\..\..\proto\intent_brokering\common\v1\common.proto;..\..\..\..\proto\intent_brokering\runtime\v1\runtime.proto;..\..\..\..\proto\intent_brokering\streaming\v1\streaming.proto" ProtoRoot="..\..\..\..\proto\" GrpcServices="Client" Link="Protos\%(Filename)%(Extension)" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Once the service is confirmed registered, the below command can be run to call a
on the provider. The command takes a json string and parses it/prints it out on the provider side.
The 'command' parameter is used to tell the desired provider what command to run.The 'args'
parameter is a list of arguments for the command. The args can be several types, defined
in `proto\common\v1\common.proto` file under the `Value` message.
in `proto\intent_brokering\common\v1\common.proto` file under the `Value` message.

```bash
grpcurl -plaintext -d @ 0.0.0.0:4243 intent_brokering.runtime.v1.IntentBrokeringService/Fulfill <<EOF
Expand Down

1 comment on commit 88954b1

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

ESS Benchmark

Benchmark suite Current: 88954b1 Previous: 5886244 Ratio
ess/1-subscribers/1000-events 183556 ns/iter (± 9299) 188873 ns/iter (± 6213) 0.97
ess/10-subscribers/1000-events 1352437 ns/iter (± 33502) 1368890 ns/iter (± 32371) 0.99
ess/100-subscribers/1000-events 13085152 ns/iter (± 731185) 13413472 ns/iter (± 574355) 0.98
ess/1-subscribers/10000-events 1683941 ns/iter (± 55380) 1712373 ns/iter (± 59392) 0.98
ess/10-subscribers/10000-events 13261647 ns/iter (± 73920) 13528032 ns/iter (± 51857) 0.98
ess/100-subscribers/10000-events 131417891 ns/iter (± 734244) 131653141 ns/iter (± 461857) 1.00

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

Please sign in to comment.