mirror of https://gitee.com/bigwinds/arangodb
added skipSsl to defaults
This commit is contained in:
parent
6a6e2f212c
commit
50b2c499e7
|
@ -129,6 +129,7 @@ const optionsDefaults = {
|
|||
"skipNightly": true,
|
||||
"skipNondeterministic": false,
|
||||
"skipRanges": false,
|
||||
"skipSsl": false,
|
||||
"skipTimeCritical": false,
|
||||
"test": undefined,
|
||||
"username": "root",
|
||||
|
@ -2908,7 +2909,7 @@ testFuncs.single_server = function(options) {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
testFuncs.ssl_server = function(options) {
|
||||
if (options.hasOwnProperty('skipSsl')) {
|
||||
if (options.skipSsl) {
|
||||
return {
|
||||
ssl_server: {
|
||||
status: true,
|
||||
|
|
Loading…
Reference in New Issue