Franz Busch
Franz Busch
I keep seeing this in the logs > Failed to save: Unable to reserve cache with key unit-tests-swift-nio-build-nightly-6.0-Linux-307731ca0421d5a69a068b62a5d04c4356279abcf0cfd0d71aa719a762bef5a7, another job may be creating this cache. More details: Cache already exists....
> So it appears that for swift-nio, it decreases the nightly unit-tests runs from 4m40s to 4m20s. A pretty low difference. That's kinda what I expected tbh. The time it...
I agree with @guoye-zhang that we probably can't use this proposed `unchecked` initialiser since the validation that lhttp does isn't fully matching what the current HTTPTypes inits do. @adam-fowler You...
I understand your ask here. IMO we should start with providing an `AsyncSequence` way for now since this is the standard API for asynchronous streaming at this point. I personally...
I think we can model this a bit differently to support `Services` either having finished or expressing some state before we start the next services. Though one thing that I'm...
In general, I think we have three approaches for the problem at hand: - `PreambleService`: This is your PR here and we would nest ServiceGroups into each other to make...
> What does a task-local logger enable that's not yet possible using metadata providers? For example, a metadata provider can already be used to look up a task-local and turn...
> For anyone else following along, the fate of this proposal is in limbo due to an open question about how to pass loggers around (should we be using task...
Yes, I brought this up as well. The async APIs are not structured concurrency "conform". We spawn an unstructured Task inside them and that task is "driving" the request. This...
> In AHC the `execute` function aligns from request head to response head. If you cancel the execute the request is cancelled. If you drop the response body the request...