You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good afternoon,
first I found this library incredible, congratulations on the work!
I use lib to intercept various protocols (http, https, mongodb, rabbitmq, redis, etc. ..)
however, when I try to intercept the gRPC calls made by lib Google PubSub it doesn't work like the other protocols, it seems to be looping.
investigating on the internet, i found that this lib uses under the engine called gRPC, and that in turn uses underneath called http2
Our use case is not for the purpose of TDD (unit tests), but I use it as a Firewall allowing or not requests.
Below is an example of my code:
`
var Mitm = require("mitm");
var mitm = Mitm();
mitm.enable();
Good afternoon,
first I found this library incredible, congratulations on the work!
I use lib to intercept various protocols (http, https, mongodb, rabbitmq, redis, etc. ..)
however, when I try to intercept the gRPC calls made by lib Google PubSub it doesn't work like the other protocols, it seems to be looping.
investigating on the internet, i found that this lib uses under the engine called gRPC, and that in turn uses underneath called http2
Our use case is not for the purpose of TDD (unit tests), but I use it as a Firewall allowing or not requests.
Below is an example of my code:
`
var Mitm = require("mitm");
var mitm = Mitm();
mitm.enable();
`
Nodejs : v12.16.1
The text was updated successfully, but these errors were encountered: