mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
Temporary disable track creation
This commit is contained in:
parent
bf9b0d037a
commit
7c8a7e7f38
3 changed files with 11 additions and 6 deletions
|
|
@ -4,13 +4,18 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
# [0.30.1] - 2025-07-21
|
# [0.30.1] - 2025-07-22
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|
||||||
- Points limit exceeded check is now cached.
|
- Points limit exceeded check is now cached.
|
||||||
- Reverse geocoding for places is now significantly faster.
|
- Reverse geocoding for places is now significantly faster.
|
||||||
|
|
||||||
|
## Changed
|
||||||
|
|
||||||
|
- Stats page should load faster now.
|
||||||
|
- Track creation is temporarily disabled.
|
||||||
|
|
||||||
|
|
||||||
# [0.30.0] - 2025-07-21
|
# [0.30.0] - 2025-07-21
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ class Point < ApplicationRecord
|
||||||
after_create :set_country
|
after_create :set_country
|
||||||
after_create_commit :broadcast_coordinates
|
after_create_commit :broadcast_coordinates
|
||||||
after_create_commit :trigger_incremental_track_generation, if: -> { import_id.nil? }
|
after_create_commit :trigger_incremental_track_generation, if: -> { import_id.nil? }
|
||||||
after_commit :recalculate_track, on: :update, if: -> { track.present? }
|
# after_commit :recalculate_track, on: :update, if: -> { track.present? }
|
||||||
|
|
||||||
def self.without_raw_data
|
def self.without_raw_data
|
||||||
select(column_names - ['raw_data'])
|
select(column_names - ['raw_data'])
|
||||||
|
|
|
||||||
|
|
@ -30,10 +30,10 @@ cache_preheating_job:
|
||||||
class: "Cache::PreheatingJob"
|
class: "Cache::PreheatingJob"
|
||||||
queue: default
|
queue: default
|
||||||
|
|
||||||
tracks_cleanup_job:
|
# tracks_cleanup_job:
|
||||||
cron: "0 2 * * 0" # every Sunday at 02:00
|
# cron: "0 2 * * 0" # every Sunday at 02:00
|
||||||
class: "Tracks::CleanupJob"
|
# class: "Tracks::CleanupJob"
|
||||||
queue: tracks
|
# queue: tracks
|
||||||
|
|
||||||
place_name_fetching_job:
|
place_name_fetching_job:
|
||||||
cron: "30 0 * * *" # every day at 00:30
|
cron: "30 0 * * *" # every day at 00:30
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue