From 1469afb4329ade642f1e712b792f07fbf2034146 Mon Sep 17 00:00:00 2001 From: Artur Neumann Date: Fri, 26 Feb 2021 16:53:31 +0000 Subject: [PATCH] Automated changelog update [skip ci] --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93b8f68bfe..7f8a2f20b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The following sections list the changes for unreleased. ## Summary +* Bugfix - Purposely delay accounts service startup: [#1734](https://github.com/owncloud/ocis/pull/1734) * Bugfix - Add missing gateway config: [#1716](https://github.com/owncloud/ocis/pull/1716) * Bugfix - Fix accounts initialization: [#1696](https://github.com/owncloud/ocis/pull/1696) * Bugfix - Fix the ttl of the authentication middleware cache: [#1699](https://github.com/owncloud/ocis/pull/1699) @@ -16,6 +17,17 @@ The following sections list the changes for unreleased. ## Details +* Bugfix - Purposely delay accounts service startup: [#1734](https://github.com/owncloud/ocis/pull/1734) + + As it turns out the race condition between `accounts <-> storage-metadata` still remains. + This PR is a hotfix, and it should be followed up with a proper fix. Either: + + - block the accounts' initialization until the storage metadata is ready (using the registry) + or - allow the accounts service to initialize and use a message broker to signal the accounts the + metadata storage is ready to receive requests. + + https://github.com/owncloud/ocis/pull/1734 + * Bugfix - Add missing gateway config: [#1716](https://github.com/owncloud/ocis/pull/1716) The auth provider `ldap` and `oidc` drivers now need to be able talk to the reva gateway. We added