Skip to content

Commit 748657a

Browse files
committed
All for multiple certs in configuration
1 parent 548cdf3 commit 748657a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pyff/builtins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ def load(req: Plumbing.Request, *opts):
686686
if elt == "as":
687687
child_opts.alias = value
688688
elif elt == "verify":
689-
child_opts.verify = [value]
689+
child_opts.verify = value.split(",")
690690
elif elt == "via":
691691
child_opts.via.append(PipelineCallback(value, req, store=req.md.store))
692692
elif elt == "cleanup":
@@ -698,7 +698,7 @@ def load(req: Plumbing.Request, *opts):
698698
"Usage: load resource [as url] [[verify] verification] [via pipeline]* [cleanup pipeline]*"
699699
)
700700
else:
701-
child_opts.verify = [elt]
701+
child_opts.verify = elt.split(",")
702702

703703
# override anything in child_opts with what is in opts
704704
child_opts = child_opts.model_copy(update=_opts)

0 commit comments

Comments
 (0)