From ec6f256df9d88c5e10e0ebdb4e3a3acad682bff7 Mon Sep 17 00:00:00 2001 From: Seebs Date: Tue, 8 Nov 2022 16:30:21 -0600 Subject: [PATCH] rename protobuf interface For unrelated reasons, we renamed the protobuf interface from package "pilosa" to package "proto". This means our GRPC endpoints need to live under "proto.Pilosa" instead of "pilosa.Pilosa". This means lattice needs to be configured the same way. (cherry picked from commit 3a8d08fed563a2981fdd8c00a377020bcb702e99) --- lattice/src/proto/pilosa_pb_service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lattice/src/proto/pilosa_pb_service.js b/lattice/src/proto/pilosa_pb_service.js index 28f45a74a..73b482a7f 100644 --- a/lattice/src/proto/pilosa_pb_service.js +++ b/lattice/src/proto/pilosa_pb_service.js @@ -7,7 +7,7 @@ var grpc = require("@improbable-eng/grpc-web").grpc; var Pilosa = (function () { function Pilosa() {} - Pilosa.serviceName = "pilosa.Pilosa"; + Pilosa.serviceName = "proto.Pilosa"; return Pilosa; }());