Skip to content

Commit b21f6d5

Browse files
committed
op and args tools like mongo wont work as strict
1 parent f5d80a5 commit b21f6d5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

flexus_client_kit/integrations/fi_mongo_store.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,16 @@
1313

1414

1515
MONGO_STORE_TOOL = ckit_cloudtool.CloudTool(
16-
strict=True,
16+
strict=False,
1717
name="mongo_store",
1818
description="Store and retrieve files in MongoDB, call with op=help for usage",
1919
parameters={
2020
"type": "object",
2121
"properties": {
2222
"op": {"type": "string", "description": "Start with 'help' for usage"},
23-
"args": {"type": ["object", "null"], "additionalProperties": False},
23+
"args": {"type": ["object"]},
2424
},
2525
"required": ["op", "args"],
26-
"additionalProperties": False,
2726
},
2827
)
2928

0 commit comments

Comments
 (0)