Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

After burning the AP under image_test, automation cannot be executed #3

Merged
merged 2 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,13 @@ config ACTIVITY_SERVICE_LOG_WITH_COLOR
help
Enable log with color

config AMS_REQUEST_TIMEOUT_MS
int "Request timeout in milliseconds"
default 10000 if !MM_KASAN
default 30000 if MM_KASAN
help
This option defines the request timeout in milliseconds.
The default is 10000 ms (10 seconds) when KASAN is not enabled,
and 30000 ms (30 seconds) when KASAN is enabled.

endif
1 change: 1 addition & 0 deletions app/ApplicationThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include "ServiceClientRecord.h"
#include "app/Application.h"
#include "app/ContextImpl.h"
#include "app/Logger.h"
#include "os/app/BnApplicationThread.h"
#include "os/app/IApplicationThread.h"

Expand Down
Loading