From ff9e765eaa6706f134c8db2ba987117fe81a99e8 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Fri, 18 Feb 2022 19:51:57 +0530 Subject: [PATCH] Include binary parameters in default data source (#19570) This is to make the default more consistent with what we have in our cloud production. It should help in surfacing bugs more quickly. ```release-note NONE ``` --- model/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/config.go b/model/config.go index f52e8f6c13..04dfa4f5a2 100644 --- a/model/config.go +++ b/model/config.go @@ -114,7 +114,7 @@ const ( TeamSettingsDefaultCustomDescriptionText = "" TeamSettingsDefaultUserStatusAwayTimeout = 300 - SqlSettingsDefaultDataSource = "postgres://mmuser:mostest@localhost/mattermost_test?sslmode=disable&connect_timeout=10" + SqlSettingsDefaultDataSource = "postgres://mmuser:mostest@localhost/mattermost_test?sslmode=disable&connect_timeout=10&binary_parameters=yes" FileSettingsDefaultDirectory = "./data/"