We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9478ec8 commit 0dec937Copy full SHA for 0dec937
config/src/main/java/com/google/firebase/samples/config/Configure.java
@@ -142,7 +142,8 @@ private static void rollback(int version) throws IOException {
142
System.out.println("ETag from server: " + etag);
143
} else {
144
System.out.println("Error:");
145
- System.out.println(inputstreamToString(httpURLConnection.getErrorStream()));
+ InputStream inputStream = new GZIPInputStream(httpURLConnection.getErrorStream());
146
+ System.out.println(inputstreamToString(inputStream));
147
}
148
149
0 commit comments