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.
This commit is contained in:
Seebs 2022-11-08 16:30:21 -06:00 committed by seebs
parent 45067b4e32
commit 3a8d08fed5

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