summaryrefslogtreecommitdiff
path: root/services/appfunctions/java
diff options
context:
space:
mode:
author Utkarsh Nigam <utkarshnigam@google.com> 2024-10-03 16:42:27 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2024-10-03 16:42:27 +0000
commit79bc46b363c566f3fa2baf4408bb1a22a478395b (patch)
tree19862686b30a721f2b3bcf486ad3dabbb6d3454e /services/appfunctions/java
parent82f094f6edf819d6752ec5f927c2164977d97f7e (diff)
parentae78431560d32230dc2bf3eb9774c6025f86f42c (diff)
Merge "Make onExecuteAppFunction non-abstract and remove timeout results." into main
Diffstat (limited to 'services/appfunctions/java')
-rw-r--r--services/appfunctions/java/com/android/server/appfunctions/AppFunctionManagerServiceImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/appfunctions/java/com/android/server/appfunctions/AppFunctionManagerServiceImpl.java b/services/appfunctions/java/com/android/server/appfunctions/AppFunctionManagerServiceImpl.java
index ab9cc20763a8..c522b640bfa5 100644
--- a/services/appfunctions/java/com/android/server/appfunctions/AppFunctionManagerServiceImpl.java
+++ b/services/appfunctions/java/com/android/server/appfunctions/AppFunctionManagerServiceImpl.java
@@ -493,7 +493,7 @@ public class AppFunctionManagerServiceImpl extends IAppFunctionManager.Stub {
Slog.e(TAG, "Failed to bind to the AppFunctionService");
safeExecuteAppFunctionCallback.onResult(
ExecuteAppFunctionResponse.newFailure(
- ExecuteAppFunctionResponse.RESULT_TIMED_OUT,
+ ExecuteAppFunctionResponse.RESULT_INTERNAL_ERROR,
"Failed to bind the AppFunctionService.",
/* extras= */ null));
}