File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
firebase-perf/src/main/java/com/google/firebase/perf Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments