From 193314e9fca5d23fbfae3c6ead7e5d23b1bea616 Mon Sep 17 00:00:00 2001 From: Corey Hulen Date: Fri, 9 Sep 2016 11:46:36 -0700 Subject: Increasing channel limits (#4003) * Increasing channel limits * Fixing unit test --- store/sql_channel_store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'store/sql_channel_store.go') diff --git a/store/sql_channel_store.go b/store/sql_channel_store.go index acf112f50..2400c34f3 100644 --- a/store/sql_channel_store.go +++ b/store/sql_channel_store.go @@ -155,7 +155,7 @@ func (s SqlChannelStore) saveChannelT(transaction *gorp.Transaction, channel *mo if count, err := transaction.SelectInt("SELECT COUNT(0) FROM Channels WHERE TeamId = :TeamId AND DeleteAt = 0 AND (Type = 'O' OR Type = 'P')", map[string]interface{}{"TeamId": channel.TeamId}); err != nil { result.Err = model.NewLocAppError("SqlChannelStore.Save", "store.sql_channel.save_channel.current_count.app_error", nil, "teamId="+channel.TeamId+", "+err.Error()) return result - } else if count > 1000 { + } else if count > 20000 { result.Err = model.NewLocAppError("SqlChannelStore.Save", "store.sql_channel.save_channel.limit.app_error", nil, "teamId="+channel.TeamId) return result } -- cgit v1.2.3-1-g7c22