diff options
author | 2018-01-21 02:49:00 -0800 | |
---|---|---|
committer | 2018-01-21 02:49:04 -0800 | |
commit | 25d78a1b39b86bc17e813ee7e21288551d2c9784 (patch) | |
tree | b60400d2d56c4ef6f86abaf3ff61dd3712c064e2 /libs/binder/ActivityManager.cpp | |
parent | 873eabc5af8346acc36c9090d6e5014a464981ee (diff) |
Wait longer for the activity service
Test: manual
Change-Id: I4cdbaa756bd26986265bca4e3a0919083ea23336
Diffstat (limited to 'libs/binder/ActivityManager.cpp')
-rw-r--r-- | libs/binder/ActivityManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/ActivityManager.cpp b/libs/binder/ActivityManager.cpp index 290471889a..7724bf151e 100644 --- a/libs/binder/ActivityManager.cpp +++ b/libs/binder/ActivityManager.cpp @@ -39,7 +39,7 @@ sp<IActivityManager> ActivityManager::getService() if (startTime == 0) { startTime = uptimeMillis(); ALOGI("Waiting for activity service"); - } else if ((uptimeMillis() - startTime) > 10000) { + } else if ((uptimeMillis() - startTime) > 1000000) { ALOGW("Waiting too long for activity service, giving up"); service = NULL; break; |