Commit b956b282 authored by anton@chromium.org's avatar anton@chromium.org

Bump up timeout for session restore copy.

Currently uses default timeout of 20 seconds.
However at least 45 seconds are needed to copy the profile on Nakasi.
Bumping the timeout to 60 seconds.

BUG=

Review URL: https://codereview.chromium.org/123853002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243293 0039d316-1c4b-4281-b951-d872f2087c98
parent 17d78265
......@@ -89,7 +89,8 @@ class ChromeBackendSettings(AndroidBrowserBackendSettings):
saved_profile_location = '/sdcard/profile/%s' % profile_base
self.adb.Adb().PushIfNeeded(new_profile_dir, saved_profile_location)
self.adb.RunShellCommand('cp -r %s/* %s' % (saved_profile_location,
self.profile_dir))
self.profile_dir),
timeout_time = 60)
# We now need to give the ownership back to the browser UID
dumpsys = self.adb.RunShellCommand('dumpsys package %s' % self.package)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment