Skip to content

Commit 36768e3

Browse files
committed
Fix repeat declarations
1 parent df703ee commit 36768e3

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

internal/command/meta_backend.go

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,6 @@ const (
6363
maxStateStoreChunkSize int64 = 128 << 20 // 128 MB
6464
)
6565

66-
const (
67-
// defaultStateStoreChunkSize is the default chunk size proposed
68-
// to the provider.
69-
// This can be tweaked but should provide reasonable performance
70-
// trade-offs for average network conditions and state file sizes.
71-
defaultStateStoreChunkSize int64 = 8 << 20 // 8 MB
72-
73-
// maxStateStoreChunkSize is the highest chunk size provider may choose
74-
// which we still consider reasonable/safe.
75-
// This reflects terraform-plugin-go's max. RPC message size of 256MB
76-
// and leaves plenty of space for other variable data like diagnostics.
77-
maxStateStoreChunkSize int64 = 128 << 20 // 128 MB
78-
)
79-
8066
// BackendOpts are the options used to initialize a backendrun.OperationsBackend.
8167
type BackendOpts struct {
8268
// BackendConfig is a representation of the backend configuration block given in

0 commit comments

Comments
 (0)