Skip to content

Commit

Permalink
jobs: pass since as string to task
Browse files Browse the repository at this point in the history
  • Loading branch information
yashlamba committed Oct 11, 2024
1 parent 8d6dd73 commit 981b69e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions invenio_vocabularies/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def default_args(cls, job_obj, since=None, **kwargs):
"config": {
"readers": [
{
"args": {"since": since},
"args": {"since": str(since)},
"type": "ror-http",
},
{"args": {"regex": "_schema_v2\\.json$"}, "type": "zip"},
Expand Down Expand Up @@ -111,7 +111,7 @@ def default_args(cls, job_obj, since=None, **kwargs):
"config": {
"readers": [
{
"args": {"since": since},
"args": {"since": str(since)},
"type": "ror-http",
},
{"args": {"regex": "_schema_v2\\.json$"}, "type": "zip"},
Expand Down

0 comments on commit 981b69e

Please sign in to comment.