Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ upload-hoogle-image:
## cassandra management

.PHONY: git-add-cassandra-schema
git-add-cassandra-schema: db-reset git-add-cassandra-schema-impl
git-add-cassandra-schema: db-migrate git-add-cassandra-schema-impl

.PHONY: git-add-cassandra-schema-impl
git-add-cassandra-schema-impl:
Expand Down
2 changes: 1 addition & 1 deletion services/brig/src/Brig/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ data Settings = Settings
-- It should also match the SRV DNS records under which other wire-server installations can find this backend:
-- _wire-server-federator._tcp.<federationDomain>
-- Once set, DO NOT change it: if you do, existing users may have a broken experience and/or stop working
-- Remember to keep it the same in Galley.
-- Remember to keep it the same in all services.
-- Example:
-- allowedDomains:
-- - wire.com
Expand Down
5 changes: 3 additions & 2 deletions services/brig/test/integration/API/OAuth.hs
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,9 @@ testRefreshTokenMaxActiveTokens opts db brig =
let accessTokenRequest = OAuthAccessTokenRequest OAuthGrantTypeAuthorizationCode cid verifier code redirectUrl
resp <- createOAuthAccessToken brig accessTokenRequest
rid <- extractRefreshTokenId jwk resp.refreshToken
tokens <- C.runClient db (lookupOAuthRefreshTokens uid)
liftIO $ assertBool testMsg $ [rid2, rid] `hasSameElems` (refreshTokenId <$> tokens)
recoverN 3 $ do
tokens <- C.runClient db (lookupOAuthRefreshTokens uid)
liftIO $ assertBool testMsg $ [rid2, rid] `hasSameElems` (refreshTokenId <$> tokens)
pure rid
delayOneSec
do
Expand Down
2 changes: 1 addition & 1 deletion services/cargohold/src/CargoHold/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ data Settings = Settings
-- It should also match the SRV DNS records under which other wire-server installations can find this backend:
-- _wire-server-federator._tcp.<federationDomain>
-- Once set, DO NOT change it: if you do, existing users may have a broken experience and/or stop working
-- Remember to keep it the same in Galley and in Brig.
-- Remember to keep it the same in all services.
-- This is referred to as the 'backend domain' in the public documentation; See
-- https://docs.wire.com/how-to/install/configure-federation.html#choose-a-backend-domain-name
_setFederationDomain :: !Domain,
Expand Down
2 changes: 1 addition & 1 deletion services/galley/src/Galley/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ data Settings = Settings
-- It should also match the SRV DNS records under which other wire-server installations can find this backend:
-- _wire-server-federator._tcp.<federationDomain>
-- Once set, DO NOT change it: if you do, existing users may have a broken experience and/or stop working
-- Remember to keep it the same in Galley.
-- Remember to keep it the same in all services.
-- Example:
-- allowedDomains:
-- - wire.com
Expand Down