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

Storage config checking in the rabbitmq storage backend isn't needed

It prevents us from using the journal proxy as well.
parent f1608599
No related branches found
No related tags found
No related merge requests found
......@@ -719,18 +719,6 @@ def load_and_check_config(
if scfg is None:
raise KeyError("Missing 'provenance.rabbitmq.storage_config' configuration")
if type == "local":
cls = scfg.get("cls")
if cls != "postgresql":
raise ValueError(
"The provenance backend can only be started with a 'postgresql' "
"configuration"
)
db = scfg.get("db")
if not db:
raise KeyError("Invalid configuration; missing 'db' config entry")
return cfg
......
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