Skip to content

Commit

Permalink
keep data sessions for longer
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Jan 3, 2024
1 parent ff8b5bc commit a2cf3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile_verifier/src/rewarder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ where
// clear out the various db tables
heartbeats::clear_heartbeats(&mut transaction, &reward_period.start).await?;
speedtests::clear_speedtests(&mut transaction, &reward_period.start).await?;
data_session::clear_hotspot_data_sessions(&mut transaction, &reward_period.end).await?;
data_session::clear_hotspot_data_sessions(&mut transaction, &reward_period.start).await?;
coverage::clear_coverage_objects(&mut transaction, &reward_period.start).await?;
// subscriber_location::clear_location_shares(&mut transaction, &reward_period.end).await?;

Expand Down

0 comments on commit a2cf3c0

Please sign in to comment.