Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode errors related to IPC

I have the following errors in Xcode console:

[IPC] 0x1047e7a80 - Connection::dispatchIncomingMessages: IPC throttling was triggered (has 689 pending incoming messages, will only process 600 before yielding) [IPC] 0x1047e7a80 - Connection::dispatchIncomingMessages: first IPC message in queue is WebProcessProxy::TakeAllMessagesForPort

I am using WKWebView in my app, what does it mean?

like image 788
ArisRS Avatar asked Sep 20 '26 17:09

ArisRS


1 Answers

This has just happened to me and I believe that the javascript in your WKWebView is generating messages too fast for the comms channel between the WKWebView and your Swift/Objective C code to handle. I did think about trying to slow the message generation rate down, but on investigation all of the messages do get processed eventually and reasonably quickly, just not instantaneously, so in the end I left the error messages alone.

like image 151
Steve Brooker Avatar answered Sep 23 '26 08:09

Steve Brooker