We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0654b commit 926c305Copy full SHA for 926c305
jenkins/helper/test_config.py
@@ -67,7 +67,10 @@ def __init__(self,
67
# the yaml work around is to have an A prepended. detect and strip out:
68
if arangosh_args is not None and len(arangosh_args) > 0 and arangosh_args != 'A ""':
69
print(arangosh_args)
70
- self.arangosh_args = json.loads(arangosh_args[1:])
+ if isinstance(arangosh_args, list):
71
+ self.arangosh_args = arangosh_args
72
+ else:
73
+ self.arangosh_args = json.loads(arangosh_args[1:])
74
self.args = copy.deepcopy(cfg.extra_args)
75
for param in args:
76
if param.startswith('$'):
0 commit comments