2021-06-10 20:34:57 +03:00
|
|
|
BUGZILLA_API_KEY=
|
|
|
|
BUGZILLA_CC_LIST=
|
|
|
|
BUGZILLA_HOST=https://bugzilla.allizom.org/
|
fix #5983 bug(nimbus): modify timing on timeout integration test (#5985)
Because
* With the settings we shipped, timeout=60s, refresh=30s, wait=45*2=90s, we expect that after two invocations of the celery task the experiment will be marked as timed out and 90s gives us that extra 30s to wait, but I've observed that since the timeout calculation is detached from the celery schedule, it may occur that on the second invocation it can be milliseconds below the timeout point and so it won't timeout until the third invocation, and since that's 90s which butts up right against the 90s the test waits it can randomly happen just after the test ends, I verified that the test did in fact end just before the experiment was marked as timed out
This commit
* Changes the integration test timing to timeout=40s, refresh=20s, wait=60*2=120s which should give enough time for three invocations of the task to occur
2021-07-19 21:22:20 +03:00
|
|
|
CELERY_SCHEDULE_INTERVAL=20
|
2021-07-17 00:10:17 +03:00
|
|
|
COMPOSE_HTTP_TIMEOUT=1000
|
2021-06-10 20:34:57 +03:00
|
|
|
DB_HOST=db
|
|
|
|
DB_NAME=postgres
|
|
|
|
DB_PASS=postgres
|
|
|
|
DB_USER=postgres
|
|
|
|
DEBUG=True
|
|
|
|
DELIVERY_CONSOLE_HOST=
|
|
|
|
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
|
|
|
|
EMAIL_HOST_PASSWORD=
|
|
|
|
EMAIL_HOST_USER=
|
|
|
|
EMAIL_HOST=
|
|
|
|
EMAIL_PORT=
|
|
|
|
EMAIL_RELEASE_DRIVERS=
|
|
|
|
EMAIL_REVIEW=
|
|
|
|
EMAIL_SENDER=
|
|
|
|
EMAIL_SHIP=
|
|
|
|
EXPERIMENTS_PAGINATE_BY=50
|
|
|
|
FEATURE_ANALYSIS=False
|
|
|
|
FEATURE_MESSAGE_TYPE=False
|
2022-05-04 22:07:26 +03:00
|
|
|
GOOGLE_APPLICATION_CREDENTIALS=/tmp/keys/application_default_credentials.json
|
|
|
|
GOOGLE_ADC_FILE=~/.config/gcloud/application_default_credentials.json
|
2021-06-10 20:34:57 +03:00
|
|
|
HOSTNAME=localhost
|
|
|
|
KINTO_HOST=http://kinto:8888/v1
|
|
|
|
KINTO_PASS=experimenter
|
|
|
|
KINTO_USER=experimenter
|
fix #5983 bug(nimbus): modify timing on timeout integration test (#5985)
Because
* With the settings we shipped, timeout=60s, refresh=30s, wait=45*2=90s, we expect that after two invocations of the celery task the experiment will be marked as timed out and 90s gives us that extra 30s to wait, but I've observed that since the timeout calculation is detached from the celery schedule, it may occur that on the second invocation it can be milliseconds below the timeout point and so it won't timeout until the third invocation, and since that's 90s which butts up right against the 90s the test waits it can randomly happen just after the test ends, I verified that the test did in fact end just before the experiment was marked as timed out
This commit
* Changes the integration test timing to timeout=40s, refresh=20s, wait=60*2=120s which should give enough time for three invocations of the task to occur
2021-07-19 21:22:20 +03:00
|
|
|
KINTO_REVIEW_TIMEOUT=40
|
2023-11-10 04:18:05 +03:00
|
|
|
LOG_LEVEL=INFO
|
2021-06-10 20:34:57 +03:00
|
|
|
LOGGING_USE_JSON=False
|
|
|
|
NORMANDY_API_HOST=
|
|
|
|
NORMANDY_DEVTOOLS_HOST=https://normandy-devtools.services.mozilla.com/#/local
|
|
|
|
OPENIDC_CLIENT_ID=
|
|
|
|
OPENIDC_CLIENT_SECRET=
|
|
|
|
OPENIDC_HEADER=HTTP_X_FORWARDED_USER
|
|
|
|
REDIS_DB=0
|
|
|
|
REDIS_HOST=redis
|
|
|
|
REDIS_PORT=6379
|
|
|
|
SECRET_KEY=SOMETHINGSECURE
|
|
|
|
SENTRY_DSN=
|
|
|
|
STATSD_BACKEND=markus.backends.logging.LoggingMetrics
|
|
|
|
SKIP_REVIEW_ACCESS_CONTROL_FOR_DEV_USER=true
|
|
|
|
STATSD_HOST=
|
|
|
|
STATSD_PORT=
|
|
|
|
STATSD_PREFIX=experimenter
|
2024-08-20 00:00:26 +03:00
|
|
|
UPLOADS_FILE_STORAGE=django.core.files.storage.FileSystemStorage
|
2023-11-03 22:47:01 +03:00
|
|
|
CIRRUS_REMOTE_SETTING_REFRESH_RATE_IN_SECONDS=1
|
|
|
|
CIRRUS_REMOTE_SETTING_URL=http://kinto:8888/v1/buckets/main/collections/nimbus-web-experiments/records
|
2024-08-26 18:56:27 +03:00
|
|
|
CIRRUS_REMOTE_SETTING_PREVIEW_URL=http://kinto:8888/v1/buckets/main-workspace/collections/nimbus-web-preview/records
|
2023-11-03 22:47:01 +03:00
|
|
|
CIRRUS_APP_ID=demo-app-beta
|
|
|
|
CIRRUS_APP_NAME=demo_app
|
|
|
|
CIRRUS_CHANNEL=release
|
|
|
|
CIRRUS_FML_PATH=./feature_manifest/sample.yml
|
|
|
|
CIRRUS_SENTRY_DSN=
|
2024-01-15 21:55:08 +03:00
|
|
|
CIRRUS_ENV_NAME=test_instance_stage
|
2024-01-22 23:42:38 +03:00
|
|
|
CIRRUS_GLEAN_MAX_EVENTS_BUFFER=1
|