mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
Increase the concurrency of the Sidekiq workers to 10 and add the user_id to the records parsed from the Google Maps Timeline Export.
This commit is contained in:
parent
21f663a090
commit
e2cc9a9992
3 changed files with 6 additions and 1 deletions
|
|
@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
- Heatmap layer on the map to show the density of points
|
||||
|
||||
---
|
||||
|
||||
## [0.4.0] — 2024-05-25
|
||||
|
||||
**BREAKING CHANGES**:
|
||||
|
|
|
|||
|
|
@ -18,7 +18,8 @@ class GoogleMaps::RecordsParser
|
|||
raw_data: data[:raw_data],
|
||||
topic: 'Google Maps Timeline Export',
|
||||
tracker_id: 'google-maps-timeline-export',
|
||||
import_id: import.id
|
||||
import_id: import.id,
|
||||
user_id: import.user_id
|
||||
)
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
---
|
||||
:concurrency: 10
|
||||
:queues:
|
||||
- default
|
||||
- imports
|
||||
|
|
|
|||
Loading…
Reference in a new issue