Skip to content

Commit

Permalink
allow configuring intra-listing in galley, make default=true (#2847)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschaul authored Nov 15, 2022
1 parent 815cbbd commit f01844a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/5-internal/intra-listing
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Default intraListing to true. This means that the list of clients, so far saved in both brig's and galley's databases, will still be written to both, but only read from brig's database. This avoids cases where these two tables go out of sync. Brig becomes the source of truth for clients. In the future, if this holds, code and data for galley's clients table can be removed.
2 changes: 1 addition & 1 deletion charts/galley/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ data:
settings:
httpPoolSize: {{ .settings.httpPoolSize }}
intraListing: false
intraListing: {{ .settings.intraListing }}
maxTeamSize: {{ .settings.maxTeamSize }}
maxConvSize: {{ .settings.maxConvSize }}
{{- if .settings.maxFanoutSize }}
Expand Down
1 change: 1 addition & 0 deletions charts/galley/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ config:
maxTeamSize: 10000
exposeInvitationURLsTeamAllowlist: []
maxConvSize: 500
intraListing: true
# Before making indexedBillingTeamMember true while upgrading, please
# refer to notes here: https://github.com/wireapp/wire-server-deploy/releases/tag/v2020-05-15
indexedBillingTeamMember: false
Expand Down

0 comments on commit f01844a

Please sign in to comment.