diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-12-03 21:42:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-12-03 21:42:17 +0100 |
commit | a5ab4fa6a8a41c2fd50cfa2ad8bee1c985ffd593 (patch) | |
tree | 1d09587f97ac8ecb53edce559b378768b6991e0b /lib/Travelynx/Command/work.pm | |
parent | 77ecd6d034440d542ecba8e56c6d6917d73bf834 (diff) |
regularly generate statistics in the background1.18.11
Diffstat (limited to 'lib/Travelynx/Command/work.pm')
-rw-r--r-- | lib/Travelynx/Command/work.pm | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/Travelynx/Command/work.pm b/lib/Travelynx/Command/work.pm index 16b41b2..27614ea 100644 --- a/lib/Travelynx/Command/work.pm +++ b/lib/Travelynx/Command/work.pm @@ -288,19 +288,6 @@ sub run { $self->app->traewelling_api->checkin( %{$candidate}, trip_id => $trip_id ); } - - # Computing yearly stats may take a while, but we've got all time in the - # world here. This means users won't have to wait when loading their - # own by-year journey log. - for my $user ( $db->select( 'users', 'id', { status => 1 } )->hashes->each ) - { - $self->app->journeys->get_stats( - uid => $user->{id}, - year => $now->year - ); - } - - # TODO wait until all background jobs have terminated } 1; |