Results 12 comments of Rohit Joshi

@krzysztofmajewski I double checked the `envoy.yaml` in your repo. I can confirm it is fine and it works. I actually copied your yaml in my working grpc-web project with go...

for `google.protobuf.Empty`, you should use `new google_protobuf_empty_pb.Empty` (in js) instead of `null` or empty objects. And you get that via `import google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb.js' `

Might be related https://github.com/grpc/grpc-web/issues/951 and https://github.com/grpc/grpc-web/pull/903

Momentarily I am doing this bad hack in `typedoc.js` to get base path/url prefix ```js const Handlebars = require('handlebars'); const BASE_URL="https://some.app/"; Handlebars.registerHelper('relativeURL', function(url) { return BASE_URL + url; }); module.exports...

I had a same use case. I think you need to pass `pino` logger instance with redact options to `pino-http` This is what I have thats working for me for...

Ran into this issue, Same scenario. Why can't it resolve in the first place?

I am also experiencing this crash upon launch. Here is the full log: ``` Process: GitX [3644] Path: /Applications/GitX.app/Contents/MacOS/GitX Identifier: net.phere.GitX Version: 0.15.1962 dev (0.15.1962) Code Type: X86-64 (Native) Parent...

GitX-dev-1964.dmg fixed the issue for me. Thnks rowanj

Just tried to build this in my system and tried to run tests. I was hit the same error. I am on Intel Macbook Pro. ```shell clang++-13 -std=c++17 -MD -MP...