summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author Karthick M J <karthickmj@google.com> 2025-03-18 18:01:29 +0000
committer Karthick M J <karthickmj@google.com> 2025-03-18 18:01:29 +0000
commit2714660d3f66ed7c4e3a82bb9e4e23284375cf1b (patch)
tree93035e237831c3456d530f6cd2365231216ce304 /src
parent73c4f11cb111c4672a8b45e05dfe4988cb9144f1 (diff)
Fix incorrect satellite config udater metrics logging
We are emitting CONFIG_UPDATE_RESULT_NO_DATA whenever we update plmn, supported services. And satellite config being empty is totally fine, in case if there hasn't been a config update. So reporting it as CONFIG_UPDATE_RESULT_NO_DATA seems like noise. Test: atest TelephonyConfigUpdateInstallReceiverTest Bug: 404563574 Flag: EXEMPT bugfix Change-Id: Iddce82393435230dc0cccac8b6a1485cc5307f75
Diffstat (limited to 'src')
-rw-r--r--src/java/com/android/internal/telephony/configupdate/TelephonyConfigUpdateInstallReceiver.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/java/com/android/internal/telephony/configupdate/TelephonyConfigUpdateInstallReceiver.java b/src/java/com/android/internal/telephony/configupdate/TelephonyConfigUpdateInstallReceiver.java
index 60afc799c8..8a34ec10cc 100644
--- a/src/java/com/android/internal/telephony/configupdate/TelephonyConfigUpdateInstallReceiver.java
+++ b/src/java/com/android/internal/telephony/configupdate/TelephonyConfigUpdateInstallReceiver.java
@@ -258,8 +258,6 @@ public class TelephonyConfigUpdateInstallReceiver extends ConfigUpdateInstallRec
public ConfigParser getNewConfigParser(String domain, @Nullable byte[] data) {
if (data == null) {
Log.d(TAG, "content data is null");
- mConfigUpdaterMetricsStats.reportOemAndCarrierConfigError(
- SatelliteConstants.CONFIG_UPDATE_RESULT_NO_DATA);
return null;
}
switch (domain) {