Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2fc124e authored by Chenjie Yu's avatar Chenjie Yu
Browse files

fix binary push flag usage

Test: gts
Bug: 125851063
Change-Id: I005c809401ad5b3de5f1b71c1b1751dc3d81bf6f
parent e334ea7d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1200,9 +1200,9 @@ Status StatsService::sendBinaryPushStateChangedAtom(const android::String16& tra

    userid_t userId = multiuser_get_user_id(uid);

    bool requiresStaging = options | IStatsManager::FLAG_REQUIRE_STAGING;
    bool rollbackEnabled = options | IStatsManager::FLAG_ROLLBACK_ENABLED;
    bool requiresLowLatencyMonitor = options | IStatsManager::FLAG_REQUIRE_LOW_LATENCY_MONITOR;
    bool requiresStaging = options & IStatsManager::FLAG_REQUIRE_STAGING;
    bool rollbackEnabled = options & IStatsManager::FLAG_ROLLBACK_ENABLED;
    bool requiresLowLatencyMonitor = options & IStatsManager::FLAG_REQUIRE_LOW_LATENCY_MONITOR;

    ProtoOutputStream proto;
    for (const auto& expId : experimentIds) {