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

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


The following commit(s) were added to refs/heads/develop by this push:
     new f351ed5  [fixed] OPC UA Subscription item name is null
f351ed5 is described below

commit f351ed546ff366ed963992d03918e7c0501b6d37
Author: Matthias Strljic <[email protected]>
AuthorDate: Wed Sep 18 10:00:17 2019 +0200

    [fixed] OPC UA Subscription item name is null
---
 .../org/apache/plc4x/java/opcua/protocol/OpcuaSubsriptionHandle.java     | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/plc4j/drivers/opcua/src/main/java/org/apache/plc4x/java/opcua/protocol/OpcuaSubsriptionHandle.java
 
b/plc4j/drivers/opcua/src/main/java/org/apache/plc4x/java/opcua/protocol/OpcuaSubsriptionHandle.java
index 8080d22..9975a90 100644
--- 
a/plc4j/drivers/opcua/src/main/java/org/apache/plc4x/java/opcua/protocol/OpcuaSubsriptionHandle.java
+++ 
b/plc4j/drivers/opcua/src/main/java/org/apache/plc4x/java/opcua/protocol/OpcuaSubsriptionHandle.java
@@ -53,6 +53,7 @@ public class OpcuaSubsriptionHandle implements 
PlcSubscriptionHandle {
 
     public  OpcuaSubsriptionHandle(String fieldName, UInteger clientHandle){
         this.clientHandle = clientHandle;
+        this.fieldName = fieldName;
     }
     @Override
     public PlcConsumerRegistration register(Consumer<PlcSubscriptionEvent> 
consumer) {

Reply via email to