Skip to content

Commit

Permalink
Revert "disable EnablePublicChannelsMaterialization by default (#9418)…
Browse files Browse the repository at this point in the history
…" (#9427)

This reverts commit 5786b0d, now that
the feature is safe to enable by default.
  • Loading branch information
lieut-data authored and jwilander committed Sep 18, 2018
1 parent c249691 commit 0204c45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/default.json
Expand Up @@ -131,7 +131,7 @@
"Trace": false,
"AtRestEncryptKey": "",
"QueryTimeout": 30,
"EnablePublicChannelsMaterialization": false
"EnablePublicChannelsMaterialization": true
},
"LogSettings": {
"EnableConsole": true,
Expand Down
2 changes: 1 addition & 1 deletion model/config.go
Expand Up @@ -687,7 +687,7 @@ func (s *SqlSettings) SetDefaults() {
}

if s.EnablePublicChannelsMaterialization == nil {
s.EnablePublicChannelsMaterialization = NewBool(false)
s.EnablePublicChannelsMaterialization = NewBool(true)
}
}

Expand Down

0 comments on commit 0204c45

Please sign in to comment.