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
@@ -30,6 +30,11 @@ func DefaultConfig() *config.Config {
Cluster: "ocis-cluster",
},
},
Store: config.Store{
Store: "memory",
Database: "postprocessing",
Table: "postprocessing",
},
}
}