From 529a2a39d73434d143faca4912d3976b5bc7618c Mon Sep 17 00:00:00 2001 From: Maheer Iqbal <42051041+maiqbal11@users.noreply.github.com> Date: Tue, 27 Aug 2019 13:51:25 -0700 Subject: [PATCH] Update Python worker imports to use proper paths --- src/proto/FunctionRpc.proto | 4 ++-- src/proto/identity/ClaimsIdentityRpc.proto | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/proto/FunctionRpc.proto b/src/proto/FunctionRpc.proto index 2d54cf9..906660b 100644 --- a/src/proto/FunctionRpc.proto +++ b/src/proto/FunctionRpc.proto @@ -10,8 +10,8 @@ option go_package ="github.com/Azure/azure-functions-go-worker/internal/rpc"; package AzureFunctionsRpcMessages; import "google/protobuf/duration.proto"; -import "identity/ClaimsIdentityRpc.proto"; -import "shared/NullableTypes.proto"; +import "azure_functions_worker/protos/ClaimsIdentityRpc.proto"; +import "azure_functions_worker/protos/NullableTypes.proto"; // Interface exported by the server. service FunctionRpc { diff --git a/src/proto/identity/ClaimsIdentityRpc.proto b/src/proto/identity/ClaimsIdentityRpc.proto index c3945bb..fb3ee12 100644 --- a/src/proto/identity/ClaimsIdentityRpc.proto +++ b/src/proto/identity/ClaimsIdentityRpc.proto @@ -3,7 +3,7 @@ syntax = "proto3"; option java_package = "com.microsoft.azure.functions.rpc.messages"; -import "shared/NullableTypes.proto"; +import "azure_functions_worker/protos/NullableTypes.proto"; // Light-weight representation of a .NET System.Security.Claims.ClaimsIdentity object. // This is the same serialization as found in EasyAuth, and needs to be kept in sync with