From b403e7d24f73d5290bd7b21bdfbf957abfb07e21 Mon Sep 17 00:00:00 2001 From: Santhosh Thangaraj Date: Mon, 24 Feb 2020 14:22:51 -0800 Subject: [PATCH] Fix the delay time for Assistant Bug: 150144102 Test: no new test added Existing is sufficient NotificationManagerServiceTest Change-Id: Iaa3559b20e69ef57a4a4ddd6665d4d7156bb7dfe --- .../android/server/notification/NotificationManagerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index 475f229562ddf..c9c6d51c40e16 100755 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -380,7 +380,7 @@ public class NotificationManagerService extends SystemService { private static final int EVENTLOG_ENQUEUE_STATUS_IGNORED = 2; private static final long MIN_PACKAGE_OVERRATE_LOG_INTERVAL = 5000; // milliseconds - private static final long DELAY_FOR_ASSISTANT_TIME = 100; + private static final long DELAY_FOR_ASSISTANT_TIME = 200; private static final String ACTION_NOTIFICATION_TIMEOUT = NotificationManagerService.class.getSimpleName() + ".TIMEOUT";