diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-12-05 17:39:40 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-12-05 17:39:40 +0300 |
commit | 5937468ae094d4189358cb96c5db2ebe2f4d0b2a (patch) | |
tree | a53d3fb08efa09a73ab86ec2166ea763c82d01eb | |
parent | 8de41f3d54c265b9fcbcd3df943b1049f17e662e (diff) |
Bump BLODA timeout to one second
-rw-r--r-- | libbutl/process.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/process.cxx b/libbutl/process.cxx index cc02d4c..6aa73ce 100644 --- a/libbutl/process.cxx +++ b/libbutl/process.cxx @@ -1489,7 +1489,7 @@ namespace butl // Hidden by butl::duration that is introduced via fdstream.mxx. // - const chrono::duration<DWORD, milli> wd (500); + const chrono::duration<DWORD, milli> wd (1000); DWORD r (WaitForSingleObject (pi.hProcess, wd.count ())); |