Skip to content

Commit 30ab468

Browse files
author
Aaron
committed
0.70.2
- Fix actions broken in last commit
1 parent f47fce7 commit 30ab468

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ subprojects {
55
apply plugin: 'maven'
66

77
group 'org.iot-dsa'
8-
version '0.70.1'
8+
version '0.70.2'
99

1010
targetCompatibility = JavaVersion.VERSION_1_8
1111
sourceCompatibility = JavaVersion.VERSION_1_8

dslink-v2/src/main/java/com/acuity/iot/dsa/dslink/protocol/responder/DSInboundInvoke.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ public boolean write(DSSession session, MessageWriter writer) {
218218
return false;
219219
}
220220
writeBegin(writer);
221+
boolean passThru = updateHead != null;
221222
if (results != null) {
222223
switch (state) {
223224
case STATE_INIT:
@@ -235,7 +236,7 @@ public boolean write(DSSession session, MessageWriter writer) {
235236
writeClose(writer);
236237
}
237238
doClose();
238-
} else {
239+
} else if (!passThru){
239240
switch (results.getResultsType()) {
240241
case STREAM:
241242
case TABLE:

0 commit comments

Comments
 (0)