Hi Michael,
It’s possible that this test is not deterministic. Some contributors to the
project have been working on improving this over time.
- Tony
> On Dec 19, 2017, at 5:49 PM, Michael Ilseman wrote:
>
> That’s the thing, there doesn’t look to be a relevant change. Subsequent
> builds pa
Hi,
We are having some issues with threading / dispatch queues this week. Basically
I’m wondering why the following “async” code has the output it does:
print(Thread.isMainThread) // true
DispatchQueue.main.async {
print(Thread.isMainThread) // false (???)
}
Whereas this same code but with