add default store to postprocessing

Signed-off-by: jkoberg <jkoberg@owncloud.com>
This commit is contained in:
jkoberg
2023-06-21 16:34:04 +02:00
parent 2c0fb9910e
commit 9740706df5
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
Bugfix: Add default store to postprocessing
Postprocessing did not have a default store especially `database` and `table` are needed to talk to nats-js
https://github.com/owncloud/ocis/pull/6578

View File

@@ -30,6 +30,11 @@ func DefaultConfig() *config.Config {
Cluster: "ocis-cluster",
},
},
Store: config.Store{
Store: "memory",
Database: "postprocessing",
Table: "postprocessing",
},
}
}