You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MockURLProtocol의 requestHandler가 static var로 선언된 shared mutable state값 이기 때문에 동기화 문제가 발생합니다.
lock을 이용해 이를 수정하고, Swift Concurrency에서 async let을 이용한 병렬 로드가 가능하도록 하겠습니다.
📝 todo
MockURLProtocol 수정
The text was updated successfully, but these errors were encountered:
💡 issue
MockURLProtocol의 requestHandler가 static var로 선언된 shared mutable state값 이기 때문에 동기화 문제가 발생합니다.
lock을 이용해 이를 수정하고, Swift Concurrency에서 async let을 이용한 병렬 로드가 가능하도록 하겠습니다.
📝 todo
The text was updated successfully, but these errors were encountered: