File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 24
24
application .config ['DEFAULT_URL' ] = os .environ .get ('HQ_DEFAULT_URL' , default_url )
25
25
application .config ['ENABLE_SSL' ] = os .environ .get ('HQ_ENABLE_SSL' , default_enable_ssl )
26
26
application .config ['CA_CERTS' ] = os .environ .get ('HQ_CA_CERTS' , default_ca_certs )
27
- application .config ['HQ_VERIFY_CERTS ' ] = os .environ .get ('HQ_VERIFY_CERTS' , default_verify_certs )
27
+ application .config ['VERIFY_CERTS ' ] = os .environ .get ('HQ_VERIFY_CERTS' , default_verify_certs )
28
28
application .config ['DEBUG' ] = os .environ .get ('HQ_DEBUG' , default_debug )
29
29
application .config ['CLIENT_KEY' ] = os .environ .get ('CLIENT_KEY' , default_client_key )
30
30
application .config ['CLIENT_CERT' ] = os .environ .get ('CLIENT_CERT' , default_client_cert )
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class TestSettings(BaseSettings):
62
62
# static
63
63
HQ_SITE_URL = 'http://elastichq.org'
64
64
HQ_GH_URL = 'https://github.com/ElasticHQ/elasticsearch-HQ'
65
- API_VERSION = 'v3.5.5 '
65
+ API_VERSION = 'v3.5.6 '
66
66
67
67
ES_TEST_INDEX_NAME = 'cars'
68
68
@@ -105,7 +105,7 @@ class ProdSettings(BaseSettings):
105
105
# static
106
106
HQ_SITE_URL = 'http://elastichq.org'
107
107
HQ_GH_URL = 'https://github.com/ElasticHQ/elasticsearch-HQ'
108
- API_VERSION = '3.5.5 '
108
+ API_VERSION = '3.5.6 '
109
109
SERVER_NAME = None
110
110
111
111
# cluster settings: specific settings for each cluster and how HQ should handle it.
You can’t perform that action at this time.
0 commit comments