From cb55c7b3b56caff37b006330f0b9575046f202f8 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 11 Sep 2020 14:14:21 +0200 Subject: [PATCH] Changelog --- changelog/unreleased/single-service-handler.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 changelog/unreleased/single-service-handler.md diff --git a/changelog/unreleased/single-service-handler.md b/changelog/unreleased/single-service-handler.md new file mode 100644 index 000000000..7985580e5 --- /dev/null +++ b/changelog/unreleased/single-service-handler.md @@ -0,0 +1,9 @@ +Bugfix: Separate indices in memory + +The accounts service was creating a bleve index instance in the service handler, thus creating separate in memory indices for the http and grpc servers. We moved the service handler creation out of the server creation so that the service handler, thus also the bleve index, is a shared instance of the servers. + +This fixes a bug that accounts created through the web ui were not able to sign in until a service restart. + +https://github.com/owncloud/product/issues/224 +https://github.com/owncloud/ocis-accounts/pull/117 +