Commit 0727f86c authored by Fotis Soldatos's avatar Fotis Soldatos
Browse files

Merge branch 'policy/modify-proto-files-names' into 'develop'

refactor(policy): change proto files names

See merge request teraflow-h2020/controller!154
parents 6c789e5b cf679879
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -16,8 +16,8 @@ syntax = "proto3";
package policy;

import "context.proto";
import "policy-condition.proto";
import "policy-action.proto";
import "policy_condition.proto";
import "policy_action.proto";

service PolicyService {
  rpc PolicyAddService (PolicyRuleService) returns (PolicyRuleState) {}
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ public class ContextGatewayImpl implements ContextGateway {
    @GrpcClient("context")
    MutinyContextServiceStub streamingDelegateContext;

    // TODO remove client when RPCs declared in context-policy.proto are moved in context.proto
    // TODO remove client when RPCs declared in context_policy.proto are moved in context.proto
    //  and use streamingDelegateContext for all methods
    @GrpcClient("context_policy")
    MutinyContextPolicyServiceStub streamingDelegateContextPolicy;
Loading