Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AHC crashes with HTTP2 when uploading a big body when channel & delegate live on separate EventLoops #784

Open
weissi opened this issue Nov 22, 2024 · 1 comment · May be fixed by #785
Open

Comments

@weissi
Copy link
Contributor

weissi commented Nov 22, 2024

This is a pretty fun bug: In (at least) HTTP2 mode, when uploading a huge body, AHC behaves badly in various different ways.
The writes (in a recursive loop) are run in a recursive loop and they are freewheeling meaning there is no real backpressure.

Specifically in

writer.writeRequestBodyPart(part, request: self, promise: promise)
return future
, we don't return the actual write promise but rather a pre-succeeded future. This won't stop until the state machine switches into a mode to "pause" sending the request body.

The problem is twofold:

  1. When delegate & channel are not co-located, the "pause" can arrive quite a bit too late because it's triggered from the channel's channelWritabilityChanged -> false which of course happens on the channel's EL. But the writes are triggered on the delegate's EL... (That's bad usually not fatal, we're just eating up some extra memory)
  2. Unfortunately, (in
    func writeNextChunk(_ chunk: Bytes.SubSequence) -> EventLoopFuture<Void> {
    if let nextChunk = iterator.wrappedValue.next() {
    return self.write(.byteBuffer(ByteBuffer(bytes: chunk))).flatMap {
    writeNextChunk(nextChunk)
    }
    } else {
    return self.write(.byteBuffer(ByteBuffer(bytes: chunk)))
    }
    }
    return writeNextChunk(chunk)
    }
    ) we are actually triggering the writes recursively! That means it's actually impossible to get the pause signal until we're done. We'll just recurse on that pre-fulfilled future (which will immediately execute) and never enter the event loop again where a "please pause sending bytes" is waiting to execute. This is always fatal if we can't tolerate O(bodySize / 4MB) recursive stack frames. 5 GB always does the job.
@weissi
Copy link
Contributor Author

weissi commented Nov 22, 2024

FWIW, the crash looks like so

(lldb) bt
* thread #7, name = 'NIO-ELT-0-#1', stop reason = EXC_BAD_ACCESS (code=2, address=0x1700bffd0)
    frame #0: 0x0000000197c32198 libswiftCore.dylib`std::__1::enable_if<is_hashable_data<char const>::value, __swift::__runtime::llvm::hash_code>::type __swift::__runtime::llvm::hashing::detail::hash_combine_range_impl<char const>(char const*, char const*) + 8
    frame #1: 0x0000000197c320ec libswiftCore.dylib`__swift::__runtime::llvm::hash_code __swift::__runtime::llvm::hash_combine<__swift::__runtime::llvm::hash_code, __swift::__runtime::llvm::StringRef>(__swift::__runtime::llvm::hash_code const&, __swift::__runtime::llvm::StringRef const&) + 104
    frame #2: 0x0000000197c31f24 libswiftCore.dylib`std::__1::pair<swift::HashMapElementWrapper<(anonymous namespace)::TupleCacheEntry>*, unsigned int> swift::ConcurrentReadableHashMap<swift::HashMapElementWrapper<(anonymous namespace)::TupleCacheEntry>, swift::Mutex>::find<(anonymous namespace)::TupleCacheEntry::Key>((anonymous namespace)::TupleCacheEntry::Key const&, swift::ConcurrentReadableHashMap<swift::HashMapElementWrapper<(anonymous namespace)::TupleCacheEntry>, swift::Mutex>::IndexStorage, unsigned long, swift::HashMapElementWrapper<(anonymous namespace)::TupleCacheEntry>*) + 116
    frame #3: 0x0000000197c189b0 libswiftCore.dylib`std::__1::pair<(anonymous namespace)::TupleCacheEntry*, swift::MetadataResponse> swift::LockingConcurrentMap<(anonymous namespace)::TupleCacheEntry, (anonymous namespace)::TupleCacheStorage>::getOrInsert<(anonymous namespace)::TupleCacheEntry::Key, swift::MetadataRequest&, swift::TargetValueWitnessTable<swift::InProcess> const*&>((anonymous namespace)::TupleCacheEntry::Key, swift::MetadataRequest&, swift::TargetValueWitnessTable<swift::InProcess> const*&) + 276
    frame #4: 0x0000000197c1869c libswiftCore.dylib`swift_getTupleTypeMetadata + 108
    frame #5: 0x0000000197c19888 libswiftCore.dylib`swift_getTupleTypeMetadata2 + 32
  * frame #6: 0x00000001078c475c AsyncHTTPClientTests`RequestBag.StateMachine.writeNextRequestPart(part=byteBuffer, taskEventLoop=0x0000600002a44000) at RequestBag+StateMachine.swift:200:97
    frame #7: 0x00000001078f2fe0 AsyncHTTPClientTests`RequestBag.writeNextRequestPart0(part=byteBuffer) at RequestBag.swift:171:33
    frame #8: 0x00000001078f26f4 AsyncHTTPClientTests`RequestBag.writeNextRequestPart(part=byteBuffer) at RequestBag.swift:160:25
    frame #9: 0x00000001078f25e8 AsyncHTTPClientTests`closure #1 in RequestBag.resumeRequestBodyStream0($0=byteBuffer) at RequestBag.swift:137:22
    frame #10: 0x000000010789650c AsyncHTTPClientTests`HTTPClient.Body.StreamWriter.write(data=byteBuffer) at HTTPHandler.swift:46:22
    frame #11: 0x0000000107897328 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 228, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c1428, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c1420) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:30
    frame #12: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=228, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c1588, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c1580, nextElement=(offset = 228, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #13: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #14: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #15: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #16: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #17: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #18: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #19: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #20: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #21: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #22: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 227, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c1d28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c1d20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #23: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=227, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c1e88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c1e80, nextElement=(offset = 227, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #24: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #25: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #26: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #27: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #28: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #29: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #30: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #31: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #32: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #33: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 226, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c2628, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c2620) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #34: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=226, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c2788, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c2780, nextElement=(offset = 226, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #35: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #36: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #37: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #38: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #39: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #40: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #41: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #42: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #43: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #44: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 225, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c2f28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c2f20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #45: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=225, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c3088, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c3080, nextElement=(offset = 225, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #46: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #47: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #48: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #49: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #50: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #51: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #52: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #53: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #54: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #55: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 224, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c3828, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c3820) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #56: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=224, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c3988, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c3980, nextElement=(offset = 224, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #57: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #58: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #59: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #60: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #61: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #62: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #63: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #64: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #65: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #66: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 223, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c4128, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c4120) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #67: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=223, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c4288, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c4280, nextElement=(offset = 223, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #68: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #69: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #70: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #71: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #72: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #73: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #74: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14    frame #75: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #76: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #77: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 222, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c4a28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c4a20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #78: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=222, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c4b88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c4b80, nextElement=(offset = 222, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #79: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #80: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #81: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #82: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #83: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #84: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #85: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #86: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #87: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #88: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 221, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c5328, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c5320) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #89: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=221, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c5488, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c5480, nextElement=(offset = 221, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #90: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #91: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #92: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #93: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #94: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #95: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #96: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #97: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #98: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #99: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 220, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c5c28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c5c20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #100: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=220, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c5d88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c5d80, nextElement=(offset = 220, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #101: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #102: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #103: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #104: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #105: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #106: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #107: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #108: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #109: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #110: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 219, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c6528, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c6520) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #111: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=219, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c6688, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c6680, nextElement=(offset = 219, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #112: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #113: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #114: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #115: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #116: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #117: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #118: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #119: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #120: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #121: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 218, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c6e28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c6e20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #122: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=218, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c6f88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c6f80, nextElement=(offset = 218, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #123: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #124: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #125: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #126: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #127: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #128: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #129: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #130: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #131: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #132: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 217, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c7728, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c7720) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #133: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=217, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c7888, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c7880, nextElement=(offset = 217, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #134: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #135: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #136: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #137: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #138: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #139: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #140: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #141: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #142: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #143: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 216, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c8028, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c8020) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #144: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=216, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c8188, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c8180, nextElement=(offset = 216, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #145: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #146: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #147: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #148: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #149: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #150: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #151: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #152: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #153: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #154: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 215, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c8928, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c8920) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #155: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=215, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c8a88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c8a80, nextElement=(offset = 215, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #156: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #157: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #158: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #159: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #160: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #161: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #162: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #163: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #164: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #165: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 214, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c9228, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c9220) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #166: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=214, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c9388, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c9380, nextElement=(offset = 214, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #167: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #168: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #169: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #170: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #171: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #172: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #173: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #174: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #175: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #176: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 213, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c9b28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c9b20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #177: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=213, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700c9c88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700c9c80, nextElement=(offset = 213, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #178: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #179: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #180: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #181: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #182: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #183: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #184: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #185: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #186: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #187: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 212, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700ca428, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700ca420) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #188: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=212, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700ca588, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700ca580, nextElement=(offset = 212, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #189: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #190: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #191: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #192: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #193: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #194: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #195: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #196: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #197: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #198: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 211, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cad28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cad20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #199: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=211, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cae88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cae80, nextElement=(offset = 211, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #200: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #201: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #202: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #203: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #204: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #205: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #206: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #207: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #208: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #209: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 210, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cb628, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cb620) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #210: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=210, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cb788, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cb780, nextElement=(offset = 210, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #211: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #212: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #213: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #214: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #215: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #216: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #217: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #218: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #219: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #220: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 209, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cbf28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cbf20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #221: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=209, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cc088, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cc080, nextElement=(offset = 209, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #222: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #223: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #224: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #225: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #226: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #227: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #228: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #229: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #230: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #231: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 208, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cc828, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cc820) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #232: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=208, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cc988, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cc980, nextElement=(offset = 208, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #233: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #234: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #235: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #236: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #237: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #238: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #239: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #240: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #241: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #242: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 207, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cd128, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cd120) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #243: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=207, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cd288, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cd280, nextElement=(offset = 207, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #244: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #245: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #246: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #247: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #248: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #249: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #250: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #251: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #252: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #253: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 206, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cda28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cda20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #254: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=206, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cdb88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cdb80, nextElement=(offset = 206, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #255: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #256: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #257: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #258: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #259: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #260: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #261: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #262: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #263: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #264: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 205, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700ce328, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700ce320) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #265: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=205, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700ce488, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700ce480, nextElement=(offset = 205, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #266: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #267: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #268: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #269: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #270: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #271: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #272: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #273: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #274: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #275: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 204, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cec28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cec20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #276: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=204, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700ced88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700ced80, nextElement=(offset = 204, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #277: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #278: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #279: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #280: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #281: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #282: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #283: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #284: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #285: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #286: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 203, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cf528, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cf520) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #287: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=203, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cf688, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cf680, nextElement=(offset = 203, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #288: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #289: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #290: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #291: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #292: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #293: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #294: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #295: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #296: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #297: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 202, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cfe28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cfe20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #298: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=202, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700cff88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700cff80, nextElement=(offset = 202, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #299: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #300: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #301: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #302: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #303: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #304: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #305: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #306: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #307: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #308: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 201, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d0728, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d0720) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #309: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=201, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d0888, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d0880, nextElement=(offset = 201, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #310: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #311: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #312: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #313: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #314: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #315: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #316: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #317: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #318: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #319: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 200, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d1028, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d1020) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #320: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=200, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d1188, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d1180, nextElement=(offset = 200, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #321: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #322: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #323: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #324: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #325: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #326: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #327: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #328: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #329: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #330: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 199, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d1928, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d1920) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #331: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=199, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d1a88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d1a80, nextElement=(offset = 199, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #332: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #333: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #334: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #335: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #336: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #337: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #338: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #339: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #340: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #341: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 198, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d2228, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d2220) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #342: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=198, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d2388, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d2380, nextElement=(offset = 198, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #343: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #344: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #345: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #346: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #347: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #348: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #349: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #350: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #351: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #352: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 197, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d2b28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d2b20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #353: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=197, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d2c88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d2c80, nextElement=(offset = 197, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #354: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #355: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #356: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #357: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #358: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #359: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #360: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #361: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #362: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #363: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 196, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d3428, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d3420) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #364: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=196, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d3588, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d3580, nextElement=(offset = 196, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #365: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #366: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #367: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #368: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #369: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #370: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #371: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #372: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #373: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #374: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 195, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d3d28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d3d20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #375: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=195, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d3e88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d3e80, nextElement=(offset = 195, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #376: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #377: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #378: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #379: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #380: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #381: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #382: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #383: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #384: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #385: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 194, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d4628, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d4620) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #386: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=194, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d4788, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d4780, nextElement=(offset = 194, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #387: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #388: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #389: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #390: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #391: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #392: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #393: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #394: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #395: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #396: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 193, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d4f28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d4f20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #397: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=193, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d5088, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d5080, nextElement=(offset = 193, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #398: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #399: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #400: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #401: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #402: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #403: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #404: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #405: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #406: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #407: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 192, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d5828, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d5820) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #408: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=192, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d5988, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d5980, nextElement=(offset = 192, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #409: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #410: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #411: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #412: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #413: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #414: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #415: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #416: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #417: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #418: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 191, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d6128, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d6120) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #419: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=191, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d6288, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d6280, nextElement=(offset = 191, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #420: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #421: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #422: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #423: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #424: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #425: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #426: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #427: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #428: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #429: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 190, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d6a28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d6a20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #430: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=190, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d6b88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d6b80, nextElement=(offset = 190, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #431: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #432: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #433: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #434: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #435: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #436: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #437: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #438: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #439: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #440: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 189, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d7328, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d7320) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #441: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=189, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d7488, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d7480, nextElement=(offset = 189, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #442: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #443: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #444: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #445: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #446: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #447: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #448: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #449: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #450: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14    frame #451: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 188, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d7c28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d7c20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #452: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=188, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d7d88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d7d80, nextElement=(offset = 188, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #453: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #454: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #455: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #456: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #457: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #458: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #459: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #460: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #461: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #462: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 187, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d8528, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d8520) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #463: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=187, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d8688, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d8680, nextElement=(offset = 187, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #464: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #465: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #466: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #467: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #468: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #469: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #470: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #471: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #472: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #473: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 186, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d8e28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d8e20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #474: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=186, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x00000001700d8f88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x00000001700d8f80, nextElement=(offset = 186, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #475: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #476: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #477: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #478: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #479: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #480: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
[...]
    frame #2033: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2034: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2035: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 44, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170128c28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170128c20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2036: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=44, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170128d88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170128d80, nextElement=(offset = 44, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2037: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2038: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2039: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2040: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2041: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2042: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2043: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2044: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2045: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2046: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 43, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170129528, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170129520) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2047: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=43, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170129688, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170129680, nextElement=(offset = 43, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2048: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2049: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2050: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2051: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2052: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2053: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2054: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2055: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2056: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2057: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 42, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170129e28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170129e20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2058: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=42, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170129f88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170129f80, nextElement=(offset = 42, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2059: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2060: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2061: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2062: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2063: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2064: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2065: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2066: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2067: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2068: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 41, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012a728, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012a720) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2069: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=41, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012a888, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012a880, nextElement=(offset = 41, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2070: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2071: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2072: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2073: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2074: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2075: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2076: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2077: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2078: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2079: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 40, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012b028, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012b020) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2080: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=40, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012b188, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012b180, nextElement=(offset = 40, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2081: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2082: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2083: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2084: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2085: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2086: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2087: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2088: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2089: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2090: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 39, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012b928, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012b920) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2091: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=39, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012ba88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012ba80, nextElement=(offset = 39, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2092: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2093: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2094: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2095: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2096: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2097: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2098: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2099: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2100: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2101: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 38, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012c228, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012c220) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2102: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=38, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012c388, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012c380, nextElement=(offset = 38, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2103: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2104: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2105: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2106: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2107: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2108: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2109: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2110: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2111: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2112: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 37, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012cb28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012cb20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2113: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=37, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012cc88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012cc80, nextElement=(offset = 37, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2114: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2115: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2116: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2117: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2118: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2119: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2120: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2121: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2122: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2123: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 36, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012d428, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012d420) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2124: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=36, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012d588, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012d580, nextElement=(offset = 36, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2125: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2126: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2127: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2128: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2129: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2130: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2131: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2132: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2133: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2134: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 35, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012dd28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012dd20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2135: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=35, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012de88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012de80, nextElement=(offset = 35, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2136: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2137: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2138: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2139: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2140: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2141: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2142: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2143: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2144: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2145: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 34, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012e628, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012e620) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2146: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=34, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012e788, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012e780, nextElement=(offset = 34, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2147: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2148: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2149: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2150: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2151: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2152: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2153: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2154: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2155: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2156: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 33, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012ef28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012ef20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2157: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=33, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012f088, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012f080, nextElement=(offset = 33, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2158: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2159: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2160: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2161: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2162: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2163: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2164: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2165: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2166: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2167: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 32, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012f828, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012f820) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2168: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=32, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017012f988, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017012f980, nextElement=(offset = 32, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2169: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2170: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2171: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2172: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2173: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2174: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2175: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2176: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2177: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2178: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 31, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170130128, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170130120) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2179: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=31, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170130288, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170130280, nextElement=(offset = 31, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2180: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2181: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2182: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2183: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2184: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2185: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2186: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2187: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2188: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2189: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 30, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170130a28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170130a20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2190: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=30, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170130b88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170130b80, nextElement=(offset = 30, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2191: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2192: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2193: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2194: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2195: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2196: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2197: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2198: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2199: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2200: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 29, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170131328, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170131320) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2201: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=29, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170131488, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170131480, nextElement=(offset = 29, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2202: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2203: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2204: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2205: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2206: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2207: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2208: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2209: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2210: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2211: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 28, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170131c28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170131c20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2212: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=28, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170131d88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170131d80, nextElement=(offset = 28, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2213: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2214: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2215: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2216: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2217: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2218: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2219: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2220: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2221: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2222: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 27, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170132528, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170132520) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2223: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=27, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170132688, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170132680, nextElement=(offset = 27, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2224: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2225: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2226: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2227: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2228: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2229: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2230: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2231: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2232: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2233: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 26, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170132e28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170132e20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2234: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=26, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170132f88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170132f80, nextElement=(offset = 26, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2235: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2236: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2237: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2238: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2239: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2240: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2241: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2242: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2243: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2244: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 25, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170133728, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170133720) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2245: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=25, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170133888, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170133880, nextElement=(offset = 25, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2246: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2247: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2248: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2249: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2250: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2251: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2252: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2253: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2254: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2255: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 24, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170134028, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170134020) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2256: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=24, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170134188, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170134180, nextElement=(offset = 24, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2257: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2258: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2259: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2260: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2261: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2262: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2263: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2264: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2265: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2266: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 23, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170134928, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170134920) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2267: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=23, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170134a88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170134a80, nextElement=(offset = 23, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2268: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2269: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2270: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2271: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2272: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2273: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2274: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2275: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2276: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2277: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 22, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170135228, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170135220) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2278: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=22, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170135388, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170135380, nextElement=(offset = 22, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2279: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2280: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2281: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2282: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2283: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2284: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2285: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2286: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2287: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2288: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 21, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170135b28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170135b20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2289: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=21, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170135c88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170135c80, nextElement=(offset = 21, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2290: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2291: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2292: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2293: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2294: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2295: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2296: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2297: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2298: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2299: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 20, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170136428, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170136420) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2300: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=20, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170136588, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170136580, nextElement=(offset = 20, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2301: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2302: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2303: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2304: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2305: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2306: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2307: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2308: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2309: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2310: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 19, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170136d28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170136d20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2311: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=19, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170136e88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170136e80, nextElement=(offset = 19, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2312: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2313: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2314: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2315: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2316: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2317: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2318: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2319: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2320: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2321: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 18, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170137628, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170137620) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2322: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=18, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170137788, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170137780, nextElement=(offset = 18, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2323: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2324: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2325: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2326: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2327: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2328: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2329: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2330: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2331: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2332: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 17, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170137f28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170137f20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2333: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=17, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170138088, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170138080, nextElement=(offset = 17, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2334: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2335: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2336: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2337: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2338: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2339: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2340: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2341: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2342: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2343: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 16, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170138828, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170138820) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2344: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=16, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170138988, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170138980, nextElement=(offset = 16, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2345: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2346: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2347: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2348: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2349: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2350: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2351: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2352: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2353: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2354: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 15, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170139128, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170139120) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2355: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=15, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170139288, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170139280, nextElement=(offset = 15, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2356: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2357: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2358: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2359: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2360: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2361: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2362: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2363: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2364: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2365: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 14, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170139a28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170139a20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2366: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=14, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170139b88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170139b80, nextElement=(offset = 14, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2367: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2368: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2369: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2370: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2371: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2372: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2373: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2374: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2375: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2376: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 13, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013a328, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013a320) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2377: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=13, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013a488, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013a480, nextElement=(offset = 13, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2378: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2379: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2380: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2381: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2382: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2383: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2384: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2385: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2386: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2387: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 12, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013ac28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013ac20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2388: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=12, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013ad88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013ad80, nextElement=(offset = 12, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2389: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2390: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2391: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2392: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2393: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2394: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2395: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2396: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2397: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2398: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 11, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013b528, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013b520) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2399: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=11, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013b688, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013b680, nextElement=(offset = 11, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2400: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2401: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2402: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2403: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2404: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2405: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2406: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2407: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2408: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2409: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 10, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013be28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013be20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2410: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=10, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013bf88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013bf80, nextElement=(offset = 10, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2411: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2412: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2413: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2414: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2415: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2416: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2417: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2418: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2419: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2420: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 9, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013c728, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013c720) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2421: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=9, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013c888, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013c880, nextElement=(offset = 9, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2422: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2423: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2424: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2425: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2426: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2427: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2428: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2429: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2430: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2431: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 8, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013d028, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013d020) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2432: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=8, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013d188, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013d180, nextElement=(offset = 8, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2433: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2434: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2435: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2436: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2437: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2438: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2439: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2440: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2441: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2442: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 7, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013d928, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013d920) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2443: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=7, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013da88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013da80, nextElement=(offset = 7, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2444: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2445: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2446: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2447: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2448: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2449: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2450: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2451: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2452: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2453: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 6, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013e228, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013e220) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2454: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=6, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013e388, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013e380, nextElement=(offset = 6, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2455: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2456: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2457: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2458: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2459: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2460: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2461: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2462: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2463: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2464: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 5, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013eb28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013eb20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2465: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=5, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013ec88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013ec80, nextElement=(offset = 5, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2466: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2467: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2468: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2469: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2470: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2471: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2472: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2473: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2474: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2475: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 4, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013f428, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013f420) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2476: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=4, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013f588, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013f580, nextElement=(offset = 4, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2477: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2478: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2479: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2480: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2481: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2482: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2483: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2484: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2485: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2486: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 3, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013fd28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013fd20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2487: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=3, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x000000017013fe88, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x000000017013fe80, nextElement=(offset = 3, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2488: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2489: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2490: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2491: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2492: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2493: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2494: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2495: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2496: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2497: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 2, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170140628, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170140620) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2498: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=2, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170140788, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170140780, nextElement=(offset = 2, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2499: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2500: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2501: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2502: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2503: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2504: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2505: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2506: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2507: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2508: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 1, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170140f28, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170140f20) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2509: 0x0000000107897b4c AsyncHTTPClientTests`closure #2 in writeNextChunk #1 <Foundation.Data>@Sendable (index=1, allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170141088, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170141080, nextElement=(offset = 1, element = <no summary available>)) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:84:33
    frame #2510: 0x0000000107897d00 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable () -> () at <compiler-generated>:0
    frame #2511: 0x0000000106f8ab64 AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed @Sendable (@in_guaranteed A) -> (@out ()) at <compiler-generated>:0
    frame #2512: 0x0000000106f8cba0 AsyncHTTPClientTests`closure #1 in EventLoopFuture.whenSuccess(, callback=0x106f97fd8) at EventLoopFuture.swift:821:17
    frame #2513: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2514: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2515: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f98040 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.whenSuccess((A) -> ()) -> () at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2516: 0x0000000106f8ac18 AsyncHTTPClientTests`EventLoopFuture.whenSuccess(callback=0x106f97fd8) at EventLoopFuture.swift:819:14
    frame #2517: 0x0000000106f8aa10 AsyncHTTPClientTests`EventLoopFuture._map<()>(callback=0x1078af344) at EventLoopFuture.swift:653:18
    frame #2518: 0x0000000106f8a854 AsyncHTTPClientTests`EventLoopFuture.map<()>(callback=0x1078af344) at EventLoopFuture.swift:644:14
    frame #2519: 0x00000001078974e8 AsyncHTTPClientTests`writeNextChunk #1 <Foundation.Data>@Sendable (chunk=(offset = 0, element = <no summary available>), allDone=NIOCore.EventLoopPromise<Swift.Void> @ 0x0000000170141828, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170141820) in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(of:maxChunkSize:) at HTTPHandler.swift:73:75
    frame #2520: 0x0000000107897ed8 AsyncHTTPClientTests`closure #2 in HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(_0=$sytD @ scalar, loop=0x0000600002a44000, iterator=NIOConcurrencyHelpers.NIOLockedValueBox<Swift.EnumeratedSequence<Algorithms.ChunksOfCountCollection<Foundation.Data>>.Iterator> @ 0x0000000170141940, chunk=(offset = 0, element = <no summary available>)) at HTTPHandler.swift:95:21
    frame #2521: 0x00000001078980e8 AsyncHTTPClientTests`partial apply for closure #2 in HTTPClient.Body.StreamWriter.writeChunks<A>(of:maxChunkSize:) at <compiler-generated>:0
    frame #2522: 0x0000000106f821f8 AsyncHTTPClientTests`closure #1 in EventLoopFuture.flatMapWithEventLoop<()>(, callback=0x107898038, eventLoop=0x0000600002a44000, next=NIOCore.EventLoopPromise<()> @ 0x0000000170141b78) at EventLoopFuture+WithEventLoop.swift:51:31
    frame #2523: 0x0000000106f896b4 AsyncHTTPClientTests`EventLoopFuture._addCallback(callback=0x0000000106f8257c AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.flatMapWithEventLoop<A>((A, NIOCore.EventLoop) -> NIOCore.EventLoopFuture<A1>) -> NIOCore.EventLoopFuture<A1> at <compiler-generated>) at EventLoopFuture.swift:783:16
    frame #2524: 0x0000000106f8c7bc AsyncHTTPClientTests`EventLoopFuture._internalWhenComplete(callback=0x0000000106f8257c AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.flatMapWithEventLoop<A>((A, NIOCore.EventLoop) -> NIOCore.EventLoopFuture<A1>) -> NIOCore.EventLoopFuture<A1> at <compiler-generated>) at EventLoopFuture.swift:798:18
    frame #2525: 0x0000000106f8975c AsyncHTTPClientTests`EventLoopFuture._whenComplete(callback=0x0000000106f8257c AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> NIOCore.CallbackList in NIOCore.EventLoopFuture.flatMapWithEventLoop<A>((A, NIOCore.EventLoop) -> NIOCore.EventLoopFuture<A1>) -> NIOCore.EventLoopFuture<A1> at <compiler-generated>) at EventLoopFuture.swift:791:14
    frame #2526: 0x0000000106f81e98 AsyncHTTPClientTests`EventLoopFuture.flatMapWithEventLoop<()>(callback=0x107898038) at EventLoopFuture+WithEventLoop.swift:48:14
    frame #2527: 0x0000000107896b0c AsyncHTTPClientTests`HTTPClient.Body.StreamWriter.writeChunks<Foundation.Data>(bytes=1073741824 bytes, maxChunkSize=4194304) at HTTPHandler.swift:93:62
    frame #2528: 0x000000010789921c AsyncHTTPClientTests`closure #1 in static HTTPClient.Body.bytes<Foundation.Data>(writer=(closure = 0x00000001078f25f8 AsyncHTTPClientTests`partial apply forwarder for closure #1 (NIOCore.IOData) -> NIOCore.EventLoopFuture<()> in AsyncHTTPClient.RequestBag.resumeRequestBodyStream0() -> () at <compiler-generated>), bytes=1073741824 bytes) at HTTPHandler.swift:178:35
    frame #2529: 0x00000001078f2378 AsyncHTTPClientTests`RequestBag.resumeRequestBodyStream0() at RequestBag.swift:140:18
    frame #2530: 0x00000001078f8b20 AsyncHTTPClientTests`closure #1 in RequestBag.resumeRequestBodyStream() at RequestBag.swift:471:22
    frame #2531: 0x00000001070bfc98 AsyncHTTPClientTests`closure #1 in SelectableEventLoop.run(task=(function = 0x00000001078f8b30 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> () in AsyncHTTPClient.RequestBag.resumeRequestBodyStream() -> () at <compiler-generated>)) at SelectableEventLoop.swift:489:17
    frame #2532: 0x00000001070c638c AsyncHTTPClientTests`partial apply for closure #1 in SelectableEventLoop.run(_:) at <compiler-generated>:0
    frame #2533: 0x00000001070ba438 AsyncHTTPClientTests`closure #1 in withAutoReleasePool<()>(execute=0x1070c6370) at SelectableEventLoop.swift:27:13
    frame #2534: 0x00000001070ba4b4 AsyncHTTPClientTests`partial apply for closure #1 in withAutoReleasePool<A>(_:) at <compiler-generated>:0
    frame #2535: 0x00000001a03c84b8 libswiftObjectiveC.dylib`ObjectiveC.autoreleasepool<τ_0_0>(invoking: () throws -> τ_0_0) throws -> τ_0_0 + 64
    frame #2536: 0x00000001070ba3a4 AsyncHTTPClientTests`withAutoReleasePool<()>(execute=0x1070c6370) at SelectableEventLoop.swift:26:16
    frame #2537: 0x00000001070bfb7c AsyncHTTPClientTests`SelectableEventLoop.run(task=(function = 0x00000001078f8b30 AsyncHTTPClientTests`partial apply forwarder for closure #1 @Sendable () -> () in AsyncHTTPClient.RequestBag.resumeRequestBodyStream() -> () at <compiler-generated>)) at SelectableEventLoop.swift:486:9
    frame #2538: 0x00000001070c1204 AsyncHTTPClientTests`SelectableEventLoop.runLoop(selfIdentifier=ObjectIdentifier(0x0000600002a44000 -> 0x0000000107b482d0 type metadata for NIOPosix.SelectableEventLoop)) at SelectableEventLoop.swift:663:22
    frame #2539: 0x00000001070c1824 AsyncHTTPClientTests`SelectableEventLoop.run() at SelectableEventLoop.swift:759:33
    frame #2540: 0x0000000107060760 AsyncHTTPClientTests`static MultiThreadedEventLoopGroup.runTheLoop(thread=0x000060000115c270, parentGroup=0x0000600003c59e00, canEventLoopBeShutdownIndividually=false, selectorFactory=0x0000000107060f7c AsyncHTTPClientTests`implicit closure #1 () throws -> NIOPosix.Selector<NIOPosix.NIORegistration> in NIOPosix.MultiThreadedEventLoopGroup.init(numberOfThreads: Swift.Int) -> NIOPosix.MultiThreadedEventLoopGroup at MultiThreadedEventLoopGroup.swift, initializer=0x0000000107069314 AsyncHTTPClientTests`partial apply forwarder for reabstraction thunk helper from @escaping @callee_guaranteed (@in_guaranteed NIOPosix.NIOThread) -> (@out ()) to @escaping @callee_guaranteed (@guaranteed NIOPosix.NIOThread) -> () at <compiler-generated>, metricsDelegate=nil, callback=0x0000000107069364 AsyncHTTPClientTests`partial apply forwarder for closure #1 (NIOPosix.SelectableEventLoop) -> () in closure #1 (NIOPosix.NIOThread) -> () in static NIOPosix.MultiThreadedEventLoopGroup.setupThreadAndEventLoop(name: Swift.String, parentGroup: NIOPosix.MultiThreadedEventLoopGroup, selectorFactory: () throws -> NIOPosix.Selector<NIOPosix.NIORegistration>, initializer: (NIOPosix.NIOThread) -> (), metricsDelegate: Swift.Optional<NIOPosix.NIOEventLoopMetricsDelegate>) -> NIOPosix.SelectableEventLoop at <compiler-generated>) at MultiThreadedEventLoopGroup.swift:102:22
    frame #2541: 0x0000000107060ddc AsyncHTTPClientTests`closure #1 in static MultiThreadedEventLoopGroup.setupThreadAndEventLoop(t=0x000060000115c270, parentGroup=0x0000600003c59e00, selectorFactory=0x0000000107060f7c AsyncHTTPClientTests`implicit closure #1 () throws -> NIOPosix.Selector<NIOPosix.NIORegistration> in NIOPosix.MultiThreadedEventLoopGroup.init(numberOfThreads: Swift.Int) -> NIOPosix.MultiThreadedEventLoopGroup at MultiThreadedEventLoopGroup.swift, initializer=0x0000000107069314 AsyncHTTPClientTests`partial apply forwarder for reabstraction thunk helper from @escaping @callee_guaranteed (@in_guaranteed NIOPosix.NIOThread) -> (@out ()) to @escaping @callee_guaranteed (@guaranteed NIOPosix.NIOThread) -> () at <compiler-generated>, metricsDelegate=nil, lock=0x000060000112cb40, _loop=0x0000600002a44000) at MultiThreadedEventLoopGroup.swift:123:41
    frame #2542: 0x0000000107065fbc AsyncHTTPClientTests`partial apply for closure #1 in static MultiThreadedEventLoopGroup.setupThreadAndEventLoop(name:parentGroup:selectorFactory:initializer:metricsDelegate:) at <compiler-generated>:0
    frame #2543: 0x00000001070f73ec AsyncHTTPClientTests`thunk for @escaping @callee_guaranteed (@guaranteed NIOThread) -> () at <compiler-generated>:0
    frame #2544: 0x00000001070fb108 AsyncHTTPClientTests`closure #1 in static ThreadOpsPosix.run($0=0x60000112cba0) at ThreadPosix.swift:133:17
    frame #2545: 0x00000001070fb1c0 AsyncHTTPClientTests`@objc closure #1 in static ThreadOpsPosix.run(handle:args:detachThread:) at <compiler-generated>:0
    frame #2546: 0x0000000186aa82e4 libsystem_pthread.dylib`_pthread_start + 136

@weissi weissi linked a pull request Nov 22, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant