Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
notifications-bot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
archives
notifications-bot
Merge requests
!19
Update firebase error handling for more info & better handling
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Update firebase error handling for more info & better handling
hotfix/firebase-handling
into
dev
Overview
0
Commits
10
Pipelines
0
Changes
1
Merged
Update firebase error handling for more info & better handling
Jonah Husson
requested to merge
hotfix/firebase-handling
into
dev
Dec 27, 2021
Overview
0
Commits
10
Pipelines
0
Changes
1
0
0
Merge request reports
Viewing commit
9cf556b6
Prev
Next
Show latest version
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
9cf556b6
Lower default byte limit
· 9cf556b6
Jonah Husson
authored
Dec 30, 2021
cmd/root.go
+
2
−
1
View file @ 9cf556b6
Edit in single-file editor
Open in Web IDE
Show full file
@@ -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
,
Loading