Skip to content

Commit a0a9a62

Browse files
committed
Changes done for v1.1.0.
1 parent dae9575 commit a0a9a62

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

com.ibm.streamsx.websocket/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Changes
22
=======
3+
## v1.1.0:
4+
* Nov/19/2021
5+
* Fixed a problem in the HttpPost operator where the HTTP GET query string not getting sent to the remote server.
6+
37
## v1.0.9:
48
* Oct/04/2020
59
* Added a new example CustomVisualization that shows how to do real-time custom dashboarding of the Streams application results with the help of the WebSocketSource operator.

com.ibm.streamsx.websocket/impl/java/src/com/ibm/streamsx/websocket/op/HttpPost.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/*
1010
==================================================================
1111
First created on: Mar/15/2020
12-
Last modified on: Sep/21/2020
12+
Last modified on: Nov/19/2021
1313
1414
This Java operator is an utility operator available in the
1515
streamsx.websocket toolkit. It can be used to do HTTP(S) post of
@@ -730,7 +730,7 @@ public final void process(StreamingInput<Tuple> inputStream, Tuple tuple) throws
730730
urlQueryString = tuple.getString("urlQueryString");
731731
}
732732

733-
if(urlQueryString.equalsIgnoreCase("") == false) {
733+
if(urlQueryString.equalsIgnoreCase("") == true) {
734734
// No URL query string specified by the user.
735735
// We can use just the URL that is configured and
736736
// get a new http GET object for us to work with.

com.ibm.streamsx.websocket/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<info:identity>
55
<info:name>com.ibm.streamsx.websocket</info:name>
66
<info:description>Provides C++ WebSocket source, analytic and sink operators</info:description>
7-
<info:version>1.0.9</info:version>
7+
<info:version>1.1.0</info:version>
88
<info:requiredProductVersion>4.2.1.0</info:requiredProductVersion>
99
</info:identity>
1010
<info:dependencies/>

websocket-tech-brief.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
============================================================
22
First created on: February/22/2020
3-
Last modified on: October/04/2020
3+
Last modified on: November/19/2021
44

55
Purpose of this toolkit
66
-----------------------

0 commit comments

Comments
 (0)