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 ab731c9 commit 8e28ab6Copy full SHA for 8e28ab6
firebase-config/src/main/java/com/google/firebase/remoteconfig/internal/ConfigRealtimeHandler.java
@@ -71,6 +71,12 @@ private synchronized Runnable createRealtimeHttpClientTask(
71
@Override
72
public void run() {
73
configRealtimeHttpClient.beginRealtimeHttpStream();
74
+ boolean isRealtimeClientRunning = true;
75
+ while (isRealtimeClientRunning) {
76
+ if (Thread.currentThread().isInterrupted()) {
77
+ isRealtimeClientRunning = false;
78
+ }
79
80
}
81
};
82
0 commit comments