Merge pull request #6578 from kobergj/AddDefaultStoreToPostprocessing

Add default store to postprocessing service
This commit is contained in:
kobergj
2023-06-22 11:56:37 +02:00
committed by GitHub
2 changed files with 10 additions and 0 deletions
@@ -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
@@ -30,6 +30,11 @@ func DefaultConfig() *config.Config {
Cluster: "ocis-cluster",
},
},
Store: config.Store{
Store: "memory",
Database: "postprocessing",
Table: "postprocessing",
},
}
}