Skip to content

Commit 2de134e

Browse files
committed
switch to unknown app state for metadata
1 parent 8cf5118 commit 2de134e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

firebase-perf/src/main/java/com/google/firebase/perf/session/gauges/GaugeManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public boolean logGaugeMetadata(String sessionId) {
284284
.setSessionId(sessionId)
285285
.setGaugeMetadata(getGaugeMetadata())
286286
.build();
287-
transportManager.log(gaugeMetric, ApplicationProcessState.FOREGROUND);
287+
transportManager.log(gaugeMetric);
288288
return true;
289289
}
290290
return false;

firebase-perf/src/main/java/com/google/firebase/perf/transport/TransportManager.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,6 @@ public void log(final GaugeMetric gaugeMetric) {
356356
* {@link #isAllowedToDispatch(PerfMetric)}).
357357
*/
358358
public void log(final GaugeMetric gaugeMetric, final ApplicationProcessState appState) {
359-
// TODO(b/394127311): This *might* potentially be the right place to get AQS.
360359
executorService.execute(
361360
() -> syncLog(PerfMetric.newBuilder().setGaugeMetric(gaugeMetric), appState));
362361
}

0 commit comments

Comments
 (0)