Skip to content
Snippets Groups Projects
Commit 432bfdcd authored by Nicolas Dandrimont's avatar Nicolas Dandrimont
Browse files

conftest: drop deprecated args from objstorage initializers

parent df35ac06
No related branches found
No related tags found
No related merge requests found
......@@ -66,12 +66,15 @@ def swh_vault_config(postgres_vault, postgres_storage, tmp_path) -> Dict[str, An
"db": postgres_storage.dsn,
"objstorage": {
"cls": "pathslicing",
"args": {"root": tmp_path, "slicing": "0:1/1:5",},
"root": tmp_path,
"slicing": "0:1/1:5",
},
},
"cache": {
"cls": "pathslicing",
"args": {"root": tmp_path, "slicing": "0:1/1:5", "allow_delete": True},
"root": tmp_path,
"slicing": "0:1/1:5",
"allow_delete": True,
},
"scheduler": {"cls": "remote", "url": "http://swh-scheduler:5008",},
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment