diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c38cc9d18..a63113d83 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 commit = False tag = False diff --git a/devops/gunicorn_conf.py b/devops/gunicorn_conf.py index 24dde4e79..249d793c9 100644 --- a/devops/gunicorn_conf.py +++ b/devops/gunicorn_conf.py @@ -29,6 +29,7 @@ workers = web_concurrency bind = use_bind keepalive = 120 +timeout = 300 errorlog = "-" accesslog = "-" diff --git a/docs/symptom-survey/contingency-tables.md b/docs/symptom-survey/contingency-tables.md index b2b741ce6..3d6018e7e 100644 --- a/docs/symptom-survey/contingency-tables.md +++ b/docs/symptom-survey/contingency-tables.md @@ -249,8 +249,7 @@ please contact us at . ### Reasons for Hesitancy -The set of "barrier" items correspond to the set of ["hesitancy_reasons" items -in the API](../api/covidcast-signals/fb-survey.md#reasons-for-hesitancy). +The set of "barrier" items correspond to the set of ["hesitancy_reasons" items in the API](../api/covidcast-signals/fb-survey.md#reasons-for-hesitancy). | Indicator | Description | Survey Item | | --- | --- | --- | diff --git a/docs/symptom-survey/survey-files.md b/docs/symptom-survey/survey-files.md index a38425a3a..f2fd26339 100644 --- a/docs/symptom-survey/survey-files.md +++ b/docs/symptom-survey/survey-files.md @@ -1,6 +1,6 @@ --- title: Response Files -parent: COVID-19 Trends and Impact Survey (CTIS) +parent: COVID-19 Trends and Impact Survey nav_order: 3 --- @@ -9,8 +9,8 @@ nav_order: 3 Users with access to the [COVID-19 Trends and Impact Survey (CTIS)](./index.md) individual response data should have received SFTP credentials for a private -server where the data are stored. To connect to the server, see the [server -access documentation](server-access.md). This documentation describes the +server where the data are stored. To connect to the server, see the +[server access documentation](server-access.md). This documentation describes the survey data available on that server. You must sign a Data Use Agreement with Facebook and with CMU to gain @@ -43,8 +43,8 @@ Each day, we write CSV files with names following this pattern: Dates in incremental filenames are of the form `YYYY_mm_dd`. `for` refers to the day the survey response was started, in the Pacific time zone (UTC - -7). `recorded` refers to the day survey data was retrieved; see the [lag -policy](#lag-policy) for more details. Each file is compressed with gzip, and +7). `recorded` refers to the day survey data was retrieved; see the +[lag policy](#lag-policy) for more details. Each file is compressed with gzip, and the standard `gunzip` command on Linux or Mac can decompress it. Every day, we write response files for all recent days of data, with today's diff --git a/docs/symptom-survey/weights.md b/docs/symptom-survey/weights.md index 928a32724..a65252189 100644 --- a/docs/symptom-survey/weights.md +++ b/docs/symptom-survey/weights.md @@ -8,9 +8,9 @@ nav_order: 5 {: .no_toc} The survey's individual response files contain respondent weights calculated -by Facebook. These weights are also used to produce our [public contingency -tables](contingency-tables.md) and the geographic aggregates [in the COVIDcast -Epidata API](../api/covidcast-signals/fb-survey.md). +by Facebook. These weights are also used to produce our +[public contingency tables](./contingency-tables.md) and the geographic aggregates +[in the COVIDcast Epidata API](../api/covidcast-signals/fb-survey.md). Facebook has provided documentation to describe the calculation and usage of these weights, [available here](symptom-survey-weights.pdf). This documentation diff --git a/src/client/delphi_epidata.R b/src/client/delphi_epidata.R index 06e5a8654..e2855f991 100644 --- a/src/client/delphi_epidata.R +++ b/src/client/delphi_epidata.R @@ -15,7 +15,7 @@ Epidata <- (function() { # API base url BASE_URL <- 'https://delphi.cmu.edu/epidata/api.php' - client_version <- '0.2.1' + client_version <- '0.2.2' # Helper function to cast values and/or ranges to strings .listitem <- function(value) { diff --git a/src/client/delphi_epidata.js b/src/client/delphi_epidata.js index 0aed16bec..79c2d260f 100644 --- a/src/client/delphi_epidata.js +++ b/src/client/delphi_epidata.js @@ -22,7 +22,7 @@ } })(this, function (exports, fetchImpl, jQuery) { const BASE_URL = "https://delphi.cmu.edu/epidata/"; - const client_version = "0.2.1"; + const client_version = "0.2.2"; // Helper function to cast values and/or ranges to strings function _listitem(value) { diff --git a/src/client/packaging/npm/package.json b/src/client/packaging/npm/package.json index f7d7a7e73..970c66cc7 100644 --- a/src/client/packaging/npm/package.json +++ b/src/client/packaging/npm/package.json @@ -2,7 +2,7 @@ "name": "delphi_epidata", "description": "Delphi Epidata API Client", "authors": "Delphi Group", - "version": "0.2.1", + "version": "0.2.2", "license": "MIT", "homepage": "https://github.com/cmu-delphi/delphi-epidata", "bugs": { diff --git a/src/client/packaging/pypi/delphi_epidata/__init__.py b/src/client/packaging/pypi/delphi_epidata/__init__.py index 50956eb03..8c69a37cb 100644 --- a/src/client/packaging/pypi/delphi_epidata/__init__.py +++ b/src/client/packaging/pypi/delphi_epidata/__init__.py @@ -1,4 +1,4 @@ from .delphi_epidata import Epidata name = 'delphi_epidata' -__version__ = '0.2.1' +__version__ = '0.2.2' diff --git a/src/client/packaging/pypi/setup.py b/src/client/packaging/pypi/setup.py index 5219c0af4..d4bab49e9 100644 --- a/src/client/packaging/pypi/setup.py +++ b/src/client/packaging/pypi/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="delphi_epidata", - version="0.2.1", + version="0.2.2", author="David Farrow", author_email="dfarrow0@gmail.com", description="A programmatic interface to Delphi's Epidata API.", diff --git a/src/server/_config.py b/src/server/_config.py index 51d1bbfd7..3e52ebf3b 100644 --- a/src/server/_config.py +++ b/src/server/_config.py @@ -5,7 +5,7 @@ load_dotenv() -VERSION = "0.2.1" +VERSION = "0.2.2" MAX_RESULTS = int(10e6) MAX_COMPATIBILITY_RESULTS = int(3650)