Skip to content

Commit 7b3ef1a

Browse files
committed
increase wait time before rpc failfast happens
1 parent f1d4d8d commit 7b3ef1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Backend/NativeCodeGenerator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3673,7 +3673,7 @@ JITManager::HandleServerCallResult(HRESULT hr, RemoteCallType callType)
36733673

36743674
// we should not have RPC failure if JIT process is still around
36753675
// since this is going to be a failfast, lets wait a bit in case server is in process of terminating
3676-
if (WaitForSingleObject(GetJITManager()->GetServerHandle(), 250) != WAIT_OBJECT_0)
3676+
if (WaitForSingleObject(GetJITManager()->GetServerHandle(), 1000) != WAIT_OBJECT_0)
36773677
{
36783678
RpcFailure_fatal_error(hr);
36793679
}

0 commit comments

Comments
 (0)