Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
hariso committed Dec 28, 2023
1 parent eba5320 commit 6e1c360
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/plugin/processor/standalone/wasm_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ func NewWASMProcessor(ctx context.Context, logger zerolog.Logger, wasmPath strin
logger: logger,
runtime: r,
runtimeCancel: runtimeCancel,
commandCh: make(chan sdk.Command, 1),
replyCh: make(chan sdk.CommandResponse, 1),
replyErr: make(chan error, 1),
commandCh: make(chan sdk.Command),
replyCh: make(chan sdk.CommandResponse),
replyErr: make(chan error),
runModStopped: make(chan struct{}),
}

Expand Down

0 comments on commit 6e1c360

Please sign in to comment.