Skip to content

Commit

Permalink
Changes done for v1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
nysenthil committed Nov 20, 2021
1 parent dae9575 commit a0a9a62
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions com.ibm.streamsx.websocket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changes
=======
## v1.1.0:
* Nov/19/2021
* Fixed a problem in the HttpPost operator where the HTTP GET query string not getting sent to the remote server.

## v1.0.9:
* Oct/04/2020
* 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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/*
==================================================================
First created on: Mar/15/2020
Last modified on: Sep/21/2020
Last modified on: Nov/19/2021
This Java operator is an utility operator available in the
streamsx.websocket toolkit. It can be used to do HTTP(S) post of
Expand Down Expand Up @@ -730,7 +730,7 @@ public final void process(StreamingInput<Tuple> inputStream, Tuple tuple) throws
urlQueryString = tuple.getString("urlQueryString");
}

if(urlQueryString.equalsIgnoreCase("") == false) {
if(urlQueryString.equalsIgnoreCase("") == true) {
// No URL query string specified by the user.
// We can use just the URL that is configured and
// get a new http GET object for us to work with.
Expand Down
2 changes: 1 addition & 1 deletion com.ibm.streamsx.websocket/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<info:identity>
<info:name>com.ibm.streamsx.websocket</info:name>
<info:description>Provides C++ WebSocket source, analytic and sink operators</info:description>
<info:version>1.0.9</info:version>
<info:version>1.1.0</info:version>
<info:requiredProductVersion>4.2.1.0</info:requiredProductVersion>
</info:identity>
<info:dependencies/>
Expand Down
2 changes: 1 addition & 1 deletion websocket-tech-brief.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
============================================================
First created on: February/22/2020
Last modified on: October/04/2020
Last modified on: November/19/2021

Purpose of this toolkit
-----------------------
Expand Down

0 comments on commit a0a9a62

Please # to comment.