Skip to content

Commit 665220e

Browse files
authored
Merge pull request #1340 from cmu-delphi/add_delivery
Add delivery to runner params
2 parents 3b59ecc + 2198d9e commit 665220e

File tree

6 files changed

+22
-4
lines changed

6 files changed

+22
-4
lines changed

ansible/templates/covid_act_now-params-prod.json.j2

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"common": {
3-
"export_dir": "/common/covidcast/receiving/covid-act-now",
3+
"export_dir": "./receiving",
44
"log_filename": "/var/log/indicators/covid_act_now.log"
55
},
66
"indicator": {
@@ -44,5 +44,8 @@
4444
"smoothed_signals": [
4545
]
4646
}
47-
}
47+
},
48+
"delivery": {
49+
"delivery_dir": "/common/covidcast/receiving/covid-act-now"
50+
}
4851
}

ansible/templates/quidel_covidtest-params-prod.json.j2

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"common": {
3-
"export_dir": "/common/covidcast/receiving/quidel",
3+
"export_dir": "./receiving",
44
"log_filename": "/var/log/indicators/quidel_covidtest.log"
55
},
66
"indicator": {
@@ -47,5 +47,8 @@
4747
"covid_ag_smoothed_pct_positive"
4848
]
4949
}
50+
},
51+
"delivery": {
52+
"delivery_dir": "/common/covidcast/receiving/quidel"
5053
}
5154
}

ansible/templates/usafacts-params-prod.json.j2

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"common": {
3-
"export_dir": "/common/covidcast/receiving/usa-facts",
3+
"export_dir": "./receiving",
44
"input_dir": "./input-cache",
55
"log_filename": "/var/log/indicators/usafacts.log"
66
},
@@ -48,5 +48,8 @@
4848
"deaths_7dav_incidence_num",
4949
"deaths_7dav_incidence_prop"]
5050
}
51+
},
52+
"delivery": {
53+
"delivery_dir": "/common/covidcast/receiving/usa-facts"
5154
}
5255
}

covid_act_now/params.json.template

+3
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,8 @@
4444
"smoothed_signals": [
4545
]
4646
}
47+
},
48+
"delivery": {
49+
"delivery_dir": "./receiving"
4750
}
4851
}

quidel_covidtest/params.json.template

+3
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,8 @@
4848
"covid_ag_smoothed_pct_positive"
4949
]
5050
}
51+
},
52+
"delivery": {
53+
"delivery_dir": "./receiving"
5154
}
5255
}

usafacts/params.json.template

+3
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,8 @@
4949
"deaths_7dav_incidence_num",
5050
"deaths_7dav_incidence_prop"]
5151
}
52+
},
53+
"delivery": {
54+
"delivery_dir": "./receiving"
5255
}
5356
}

0 commit comments

Comments
 (0)