Eirik A

Results 300 comments of Eirik A

How long after does it start failing for you? In the other watch apis we actually catch the EOFs because it tends to happen after about 5 minutes: https://github.com/kube-rs/kube/blob/f6ca7df140ec1e538b5fc6309e25ec5093bc17d3/kube-client/src/client/mod.rs#L279-L324 We...

Current workaround: ```sh clitool -vv spammy-subcmd | grep -E "^clitool" # or clitool -vv spammy-subcmd | grep -vE "^tokio|^hyper" ```

I think that's a nice API. Unfortunately, it's probably too static. If we actually needed the hyper logs to see what was going on because some reqwest wrapping API library...

That's all very sensible. I hadn't considered that CLI's might expose the `filter` like that, in which case the precedence of the two does becomes a problem. I do agree...

Nice. I'm happy with having it in here, but feel free to raise another issue if you want to work on one of the ones. Though looks like you've already...

You probably need to set the HOME environment variable for supervisord if you aren't. Looks like confortable is choking because it is trying to use undefined or something bad in...

Ah, yes, I remember thinking about that ages ago, then forgot. Thanks, will have a look at that again this weekend.

Several path functions are very useful and have allowed me to cut down much of my own resolving code! However, by introducing windows resolvability on the server, they will still...

substack's fork is posix only. I might take the win32 bits from node and include it/posix version conditionally. I'm not sure whether posix and windows slashes can coexist in the...

Using substack's posix fork now. Can write a w32 version and include it conditionally. But due to above reasons, not sure how to proceed yet, so I'm putting it on...