Skip to content

Commit

Permalink
Merge pull request #337 from mild-blue/isin_rerun
Browse files Browse the repository at this point in the history
more granularity
  • Loading branch information
tomaskourim authored Jun 18, 2021
2 parents 1d5890e + 09b2a41 commit 05a0722
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,52 @@ Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 6000,
"patientsCount": 3000,
"patientsOffset": 0
}
###
POST {{url}}/admin/run-isin-job
Content-Type: application/json
Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 3000,
"patientsOffset": 2999
}
###
POST {{url}}/admin/run-isin-job
Content-Type: application/json
Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 3000,
"patientsOffset": 5998
}

###
POST {{url}}/admin/run-isin-job
Content-Type: application/json
Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 3000,
"patientsOffset": 8997
}

###
POST {{url}}/admin/run-isin-job
Expand All @@ -31,10 +72,11 @@ Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 6000,
"patientsOffset": 5900
"patientsCount": 3000,
"patientsOffset": 11996
}

###
Expand All @@ -44,10 +86,11 @@ Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 6000,
"patientsOffset": 11800
"patientsCount": 3000,
"patientsOffset": 14995
}

###
Expand All @@ -57,10 +100,11 @@ Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 6000,
"patientsOffset": 17700
"patientsCount": 3000,
"patientsOffset": 17994
}

###
Expand All @@ -70,10 +114,11 @@ Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 6000,
"patientsOffset": 23600
"patientsCount": 3000,
"patientsOffset": 20993
}

###
Expand All @@ -83,8 +128,38 @@ Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 6000,
"patientsOffset": 200
"patientsCount": 3000,
"patientsOffset": 22992
}

###
POST {{url}}/admin/run-isin-job
Content-Type: application/json
Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 3000,
"patientsOffset": 24991
}

###
POST {{url}}/admin/run-isin-job
Content-Type: application/json
Authorization: Bearer {{auth_token}}

{
"exportPatientsInfo": true,
"checkVaccinations": true,
"exportVaccinations": true,
"validatePatients": true,
"patientsCount": 3000,
"patientsOffset": 26990
}

Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ Authorization: Bearer {{auth_token}}
{
"validatePatients": true,
"checkVaccinations": true,
"exportPatientsInfo": false,
"exportVaccinations": false,
"exportPatientsInfo": true,
"exportVaccinations": true,

"patientsCount": null,
"patientsOffset": 0
Expand Down

0 comments on commit 05a0722

Please sign in to comment.