Skip to content

Commit 0481a94

Browse files
committed
Update error messages to directly mention Firebase Installations.
1 parent 01b4f73 commit 0481a94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firebase-config/src/main/java/com/google/firebase/remoteconfig/internal/ConfigFetchHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,14 +200,14 @@ && areCachedFetchConfigsValid(minimumFetchIntervalInSeconds, currentTime)) {
200200
if (!installationIdTask.isSuccessful()) {
201201
return Tasks.forException(
202202
new FirebaseRemoteConfigClientException(
203-
"Failed to get Firebase Installation ID for fetch.",
203+
"Firebase Installations failed to get installation ID for fetch.",
204204
installationIdTask.getException()));
205205
}
206206

207207
if (!installationAuthTokenTask.isSuccessful()) {
208208
return Tasks.forException(
209209
new FirebaseRemoteConfigClientException(
210-
"Failed to get Firebase Installation token for fetch.",
210+
"Firebase Installations failed to get installation auth token for fetch.",
211211
installationAuthTokenTask.getException()));
212212
}
213213

0 commit comments

Comments
 (0)