Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix datefmt command on newer qsv and update the minimum version #160

Merged
merged 2 commits into from
Aug 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions datapusher/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
POSTGRES_BIGINT_MAX = 9223372036854775807
POSTGRES_BIGINT_MIN = -9223372036854775808

MINIMUM_QSV_VERSION = "0.108.0"
MINIMUM_QSV_VERSION = "0.123.0"

DATASTORE_URLS = {
"datastore_delete": "{ckan_url}/api/action/datastore_delete",
Expand Down Expand Up @@ -1110,7 +1110,6 @@ def _push_to_datastore(task_id, input, dry_run=False, temp_dir=None):

qsv_applydp_cmd = [
qsv_bin,
"applydp",
"datefmt",
datecols,
tmp,
Expand Down
Loading