Skip to content
Snippets Groups Projects
Commit 9cf556b6 authored by Jonah Husson's avatar Jonah Husson
Browse files

Lower default byte limit

parent 1942f67f
No related branches found
No related tags found
3 merge requests!21Release,!20Dev,!19Update firebase error handling for more info & better handling
......@@ -71,7 +71,8 @@ var rootCmd = &cobra.Command{
}
viper.SetDefault("notificationRate", 30)
viper.SetDefault("notificationsPerBatch", 20)
viper.SetDefault("maxNotificationPayload", 4096)
// This is set to approx. 90% of the stated limit (4096)
viper.SetDefault("maxNotificationPayload", 3686)
// Populate params
NotificationParams = notifications.Params{
Address: localAddress,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment