From 2540069c3a93ed6b075adcf097cf2850b7eac97d Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 11 Sep 2020 19:25:31 +0200 Subject: [PATCH] Add changelog --- changelog/unreleased/update-accounts-fix-index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 changelog/unreleased/update-accounts-fix-index.md diff --git a/changelog/unreleased/update-accounts-fix-index.md b/changelog/unreleased/update-accounts-fix-index.md new file mode 100644 index 0000000000..3b112b7b59 --- /dev/null +++ b/changelog/unreleased/update-accounts-fix-index.md @@ -0,0 +1,10 @@ +Bugfix: Cleanup separated 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 +https://github.com/owncloud/ocis-accounts/pull/118 +https://github.com/owncloud/ocis/pull/555