Increased default payload limit from 100 kB to 300 kB (#26651)

This commit is contained in:
Harshil Sharma
2024-04-05 09:42:57 +05:30
committed by GitHub
parent 30ab45ebb8
commit 931abcb24e

View File

@@ -918,7 +918,7 @@ func (s *ServiceSettings) SetDefaults(isUpdate bool) {
}
if s.MaximumPayloadSizeBytes == nil {
s.MaximumPayloadSizeBytes = NewInt64(100000)
s.MaximumPayloadSizeBytes = NewInt64(300000)
}
}