Skip to content

Commit

Permalink
Bump up timeout in AdbClient
Browse files Browse the repository at this point in the history
now that the timeout actually means something, we see that sometimes adb is just really slow in
replying to the DONE packet during file push. Give it more time to complete.

llvm-svn: 268623
  • Loading branch information
labath committed May 5, 2016
1 parent 2ff8330 commit 0360c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/source/Plugins/Platform/Android/AdbClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ using namespace lldb_private::platform_android;

namespace {

const std::chrono::seconds kReadTimeout(4);
const std::chrono::seconds kReadTimeout(6);
const char * kOKAY = "OKAY";
const char * kFAIL = "FAIL";
const char * kDATA = "DATA";
Expand Down

0 comments on commit 0360c0f

Please sign in to comment.