Mike Beaumont
Mike Beaumont
It looks like https://github.com/scrapinghub/dateparser supports parsing these strings into `datetime.datetime`s
I discovered that `DlvExec` expects something like the following (using neovim) at the time of writing: ``` :DlvExec ./program . --\ subcommand\ subsubcommand ``` For its second argument it expects...
@JCDetwiler can you post the output of `resolvectl status`? My problem was that for my real link device (`wlan0`) I had `~.` in the `DNS Domain` setting/the `DefaultRoute` option enabled...
Hmm, we've been using it in production for the last 2 weeks without restart issues. Do you have the right scopes requested? Namely "read:user" or "user"? https://github.com/jenkinsci/github-oauth-plugin/blob/cd8b38ae6e1fcf3f07e7ef57126c71b7690675d4/src/main/java/org/jenkinsci/plugins/GithubAuthenticationToken.java#L221
I think the `TimeoutConfig` just leads to the client disconnecting, leading to the scenario I mentioned where a request effectively might never time out.
> I stand corrected: the timeout policy on the dispatcher currently doesn't use the value from the `TimeoutConfig`. It uses a default 30 seconds timeout value, with the option of...
> What if we added the context to the base Request and Response? It would require a small change in every message, but we would not have to break the...
> > once it's paused, both a request waiting in the dispatcher queue and AFAICT an already dispatched request will never time out. > > Correct. The idea was to...
@lahabana It's still [WIP in Envoy](https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/trace/v3/opentelemetry.proto#extension-envoy-tracers-opentelemetry)
Yeah this looks to be simpler. It's a bit sad because I think the builder pattern is good for reifying the transition from "in progress" thing to "complete" thing. Ideally...