Skip to content

Commit d58af41

Browse files
authored
Merge pull request #31 from lasanthaS/master
Bump Siddhi version and fix test failure
2 parents 40fc75f + 951d0db commit d58af41

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Tests/SiddhiCoreTests/TestOutputStream.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ def getCount(self, event):
4444
def test_outputstram(self):
4545
logging.info("OutputStream Test 1: Test reception of events")
4646
siddhiManager = SiddhiManager()
47-
cseEventStream = "@config(async = 'true') " \
48-
"define stream cseEventStream (symbol string, price float, volume int);"
47+
cseEventStream = "define stream cseEventStream (symbol string, price float, volume int);"
4948

5049
query = "@info(name = 'query 1') from cseEventStream select symbol, price, volume insert into OutputStream; "
5150

@@ -58,6 +57,7 @@ def receive(self, events):
5857
_self_shaddow.inEventCount.addAndGet(len(events))
5958

6059
siddhiAppRuntime.addCallback("OutputStream", StreamCallbackImpl())
60+
siddhiAppRuntime.start()
6161

6262
inputHandler = siddhiAppRuntime.getInputHandler("cseEventStream")
6363

__PySiddhiProxy/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>io.siddhi</groupId>
3232
<artifactId>siddhi-core</artifactId>
33-
<version>5.1.5</version>
33+
<version>5.1.7</version>
3434
</dependency>
3535
</dependencies>
3636

@@ -224,4 +224,4 @@
224224
</pluginRepository>
225225

226226
</pluginRepositories>
227-
</project>
227+
</project>

0 commit comments

Comments
 (0)