Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
Prepared 5.7.1 version number
Browse files Browse the repository at this point in the history
  • Loading branch information
oliemansm committed Mar 27, 2019
1 parent d0f37d4 commit 8ca09fb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@
}

function subscribeToStocks() {
// var exampleSocket = new WebSocket("ws://ceofs-seb-dot-shell-dtest.appspot.com:443/subscriptions");
// var exampleSocket = new WebSocket("ws://173.194.79.153:80/subscriptions");
var exampleSocket = new WebSocket("ws://localhost:9000/subscriptions");
networkBlip();

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#

version = 5.7.1-SNAPSHOT
version = 5.7.1
PROJECT_GROUP = com.graphql-java-kickstart
PROJECT_NAME = graphql-spring-boot
PROJECT_DESC = GraphQL Spring Framework Boot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,10 @@
newUri += "//" + loc.host;
newUri += "${subscriptionsEndpoint}";

var subscriptionsClient = new window.SubscriptionsTransportWs.SubscriptionClient(newUri, { reconnect: ${subscriptionClientReconnect}, timeout: ${subscriptionClientTimeout} });
var subscriptionsClient = new window.SubscriptionsTransportWs.SubscriptionClient(newUri, {
reconnect: ${subscriptionClientReconnect},
timeout: ${subscriptionClientTimeout}
});
var subscriptionsFetcher = window.GraphiQLSubscriptionsFetcher.graphQLFetcher(subscriptionsClient, graphQLFetcher);

var props = ${props};
Expand Down

0 comments on commit 8ca09fb

Please sign in to comment.