Skip to content

Commit

Permalink
disable EnablePublicChannelsMaterialization by default (#9418)
Browse files Browse the repository at this point in the history
* disable EnablePublicChannelsMaterialization by default

Creating triggers on Amazon RDS seems to reqiure extra privileges. More
investigation is required.

* update model/config.go too
  • Loading branch information
lieut-data authored and crspeller committed Sep 17, 2018
1 parent a755bcd commit 5786b0d
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
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
"Trace": false,
"AtRestEncryptKey": "",
"QueryTimeout": 30,
"EnablePublicChannelsMaterialization": true
"EnablePublicChannelsMaterialization": false
},
"LogSettings": {
"EnableConsole": true,
Expand Down
2 changes: 1 addition & 1 deletion model/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ func (s *SqlSettings) SetDefaults() {
}

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

Expand Down

0 comments on commit 5786b0d

Please sign in to comment.