Skip to content

Commit a42acd7

Browse files
committed
Fix code consistency issue
1 parent aa18b25 commit a42acd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/command/meta_backend.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ func (m *Meta) Operation(b backend.Backend, vt arguments.ViewType) *backendrun.O
430430
// So we do nothing here.
431431
case m.backendConfigState != nil && m.stateStoreConfigState != nil:
432432
// Both set
433-
panic(fmt.Sprintf("failed to encode backend configuration for plan: both backend and state_store data present but they are mutually exclusive"))
433+
panic(fmt.Sprint("failed to encode backend configuration for plan: both backend and state_store data present but they are mutually exclusive"))
434434
case m.backendConfigState != nil:
435435
planOutBackend, err = m.backendConfigState.Plan(schema, workspace)
436436
if err != nil {

0 commit comments

Comments
 (0)