summaryrefslogtreecommitdiff
path: root/services/incremental/ServiceWrappers.cpp
diff options
context:
space:
mode:
author Alex Buynytskyy <alexbuy@google.com> 2021-01-27 06:58:55 -0800
committer Alex Buynytskyy <alexbuy@google.com> 2021-01-29 11:16:02 -0800
commit07694ed49b14c0f03aea21c5e42773e542f867ce (patch)
treec8f27e1f1c4d932b3b6f1e563bb91e077ea092e5 /services/incremental/ServiceWrappers.cpp
parentdd56fa93f65b38f47883e88300aacb53902b8857 (diff)
Inherited installation support for Incremental.
Bug: 162345970 Test: atest PackageManagerShellCommandTest PackageManagerShellCommandIncrementalTest IncrementalServiceTest PackageManagerServiceTest ChecksumsTest Change-Id: I360f44bc52e05553eacc448faa26f603d9eaae59 Merged-In: I360f44bc52e05553eacc448faa26f603d9eaae59
Diffstat (limited to 'services/incremental/ServiceWrappers.cpp')
-rw-r--r--services/incremental/ServiceWrappers.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/services/incremental/ServiceWrappers.cpp b/services/incremental/ServiceWrappers.cpp
index dfa6083691a9..3573177af185 100644
--- a/services/incremental/ServiceWrappers.cpp
+++ b/services/incremental/ServiceWrappers.cpp
@@ -220,6 +220,11 @@ public:
timeout.minPendingTimeUs = perUidTimeout.minPendingTimeUs;
timeout.maxPendingTimeUs = perUidTimeout.maxPendingTimeUs;
}
+
+ LOG(ERROR) << "Set read timeouts: " << timeouts.size() << " ["
+ << (timeouts.empty() ? -1 : timeouts.front().uid) << "@"
+ << (timeouts.empty() ? -1 : timeouts.front().minTimeUs / 1000) << "ms]";
+
return incfs::setUidReadTimeouts(control, timeouts);
}
};