mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 06:40:01 +08:00
Increase timeout in Symbols::DownloadObjectAndSymbolFile
from 30 seconds to 120 seconds. We've seen cases where this symbol lookup can exceed 30 seconds for people working remotely. <rdar://problem/48460476> llvm-svn: 355169
This commit is contained in:
@@ -591,7 +591,7 @@ bool Symbols::DownloadObjectAndSymbolFile(ModuleSpec &module_spec,
|
||||
&signo, // Signal int *
|
||||
&command_output, // Command output
|
||||
std::chrono::seconds(
|
||||
30), // Large timeout to allow for long dsym download times
|
||||
120), // Large timeout to allow for long dsym download times
|
||||
false); // Don't run in a shell (we don't need shell expansion)
|
||||
if (error.Success() && exit_status == 0 && !command_output.empty()) {
|
||||
CFCData data(CFDataCreateWithBytesNoCopy(
|
||||
|
||||
Reference in New Issue
Block a user