Ivan Greene
Ivan Greene
To get around this in the meantime (it gets passed through to Pretender just fine): ```typescript server.timing = false as unknown as number; ```
@IanVS unfortunately `v0.1.48` has not fixed the issue. Passing 0 to Pretender still causes the response to be handled async, which is causing the delay (a setTimeout with delay of...
Here is a screenshot after debugging, confirming that 0 has been passed into Pretender but we are failing the condition I linked to and handling async still: ![Screenshot 2023-10-30 at...
Passing 1 is similar; any value between 0 and 500 is about the same at around 500, and anything above that takes about as long as the timing
Since this factory is trying to pull the service name from a system property, as an immediate workaround until this bug is resolved, this exception can be suppressed by setting...
Another solution which may be better since it uses an actual no-op tracer instead of attempting to report traces using the default config values: ```java import io.opentracing.Tracer; import io.opentracing.noop.NoopTracerFactory; import...