mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 10:45:15 +03:00
13 lines
524 B
Diff
13 lines
524 B
Diff
Anbox tend not to leave enough time for Android to start.
|
|
This patch gives more breathing room.
|
|
--- a/src/anbox/cmds/launch.cpp
|
|
+++ b/src/anbox/cmds/launch.cpp
|
|
@@ -34,7 +34,7 @@
|
|
namespace fs = boost::filesystem;
|
|
|
|
namespace {
|
|
-constexpr unsigned int max_session_mgr_wait_attempts{10};
|
|
+constexpr unsigned int max_session_mgr_wait_attempts{100};
|
|
const std::chrono::seconds session_mgr_wait_interval{5};
|
|
constexpr unsigned int max_dbus_service_wait_attempts{10};
|
|
const std::chrono::seconds dbus_service_wait_interval{5};
|