You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/06/20 14:22:27 UTC

[plc4x] 02/03: fix(plc4go): return correct WithOption for WithExecutorOptionTracerWorkers

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 9d1877f38195ef759baaf2551b10ca51756f626c
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Tue Jun 20 16:16:25 2023 +0200

    fix(plc4go): return correct WithOption for WithExecutorOptionTracerWorkers
---
 plc4go/pkg/api/config/config.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4go/pkg/api/config/config.go b/plc4go/pkg/api/config/config.go
index c731f181db..3975121b7c 100644
--- a/plc4go/pkg/api/config/config.go
+++ b/plc4go/pkg/api/config/config.go
@@ -71,7 +71,7 @@ func WithTraceDefaultMessageCodecWorker(traceWorkers bool) WithOption {
 }
 
 // WithExecutorOptionTracerWorkers sets a flag which extends logging for workers
-func WithExecutorOptionTracerWorkers(traceWorkers bool) options.WithOption {
+func WithExecutorOptionTracerWorkers(traceWorkers bool) WithOption {
 	return options.WithExecutorOptionTracerWorkers(traceWorkers)
 }