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,
|
"skipNightly": true,
|
||||||
"skipNondeterministic": false,
|
"skipNondeterministic": false,
|
||||||
"skipRanges": false,
|
"skipRanges": false,
|
||||||
|
"skipSsl": false,
|
||||||
"skipTimeCritical": false,
|
"skipTimeCritical": false,
|
||||||
"test": undefined,
|
"test": undefined,
|
||||||
"username": "root",
|
"username": "root",
|
||||||
|
@ -2908,7 +2909,7 @@ testFuncs.single_server = function(options) {
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
testFuncs.ssl_server = function(options) {
|
testFuncs.ssl_server = function(options) {
|
||||||
if (options.hasOwnProperty('skipSsl')) {
|
if (options.skipSsl) {
|
||||||
return {
|
return {
|
||||||
ssl_server: {
|
ssl_server: {
|
||||||
status: true,
|
status: true,
|
||||||
|
|
Loading…
Reference in New Issue