chore: revert activation of the uv_loop on incoming IPC messages (#19737)

This reverts commit 8028c57b42.
This commit is contained in:
trop[bot]
2019-08-13 15:22:55 -07:00
committed by Shelley Vohr
parent c1ad66b104
commit 54e1c11b2b

View File

@@ -48,7 +48,6 @@ v8Util.setHiddenValue(global, 'ipcNative', {
onMessage (internal: boolean, channel: string, args: any[], senderId: number) {
const sender = internal ? ipcInternalEmitter : ipcEmitter
sender.emit(channel, { sender, senderId }, ...args)
process.activateUvLoop()
}
})