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 2022/08/17 14:12:46 UTC

[plc4x] 01/03: fix(plc4go/spi): fixed minor issue with RequestTransaction

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 33fdbda7be4b1c8ec3e01d5ee2429bd64d7139e0
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Wed Aug 17 16:09:45 2022 +0200

    fix(plc4go/spi): fixed minor issue with RequestTransaction
---
 plc4go/spi/RequestTransactionManager.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4go/spi/RequestTransactionManager.go b/plc4go/spi/RequestTransactionManager.go
index 4f8f236bd..2c3ceca6e 100644
--- a/plc4go/spi/RequestTransactionManager.go
+++ b/plc4go/spi/RequestTransactionManager.go
@@ -203,7 +203,7 @@ type RequestTransaction struct {
 	transactionLog zerolog.Logger
 }
 
-func (t RequestTransaction) String() string {
+func (t *RequestTransaction) String() string {
 	return fmt.Sprintf("Transaction{tid:%d}", t.transactionId)
 }