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 3a8d08fed5)
This commit is contained in:
Seebs 2022-11-08 16:30:21 -06:00 committed by Fletcher Haynes
parent eb842274ec
commit ec6f256df9

View file

@ -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;
}());