We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb2528 commit ea702deCopy full SHA for ea702de
internal/spokes/spokes.go
@@ -955,11 +955,7 @@ func (r *spokesReceivePack) isFsckConfigEnabled() bool {
955
}
956
957
func (r *spokesReceivePack) getMaxInputSize() (int, error) {
958
- // We want to skip the default push limit when the `import_skip_push_limit`
959
- // stat is set only.
960
- // We keep using the `is_import` here for backward compatibility only,
961
- // which should be removed on a subsequent PR.
962
- if isImporting() || skipPushLimit() {
+ if skipPushLimit() {
963
return 80 * 1024 * 1024 * 1024, nil /* 80 GB */
964
965
0 commit comments