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

Commit 8ca09fb

Browse files
committed
Prepared 5.7.1 version number
1 parent d0f37d4 commit 8ca09fb

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

example-graphql-subscription/src/main/resources/public/index.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@
6262
}
6363

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818
#
1919

20-
version = 5.7.1-SNAPSHOT
20+
version = 5.7.1
2121
PROJECT_GROUP = com.graphql-java-kickstart
2222
PROJECT_NAME = graphql-spring-boot
2323
PROJECT_DESC = GraphQL Spring Framework Boot

graphiql-spring-boot-autoconfigure/src/main/resources/graphiql.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,10 @@
125125
newUri += "//" + loc.host;
126126
newUri += "${subscriptionsEndpoint}";
127127

128-
var subscriptionsClient = new window.SubscriptionsTransportWs.SubscriptionClient(newUri, { reconnect: ${subscriptionClientReconnect}, timeout: ${subscriptionClientTimeout} });
128+
var subscriptionsClient = new window.SubscriptionsTransportWs.SubscriptionClient(newUri, {
129+
reconnect: ${subscriptionClientReconnect},
130+
timeout: ${subscriptionClientTimeout}
131+
});
129132
var subscriptionsFetcher = window.GraphiQLSubscriptionsFetcher.graphQLFetcher(subscriptionsClient, graphQLFetcher);
130133

131134
var props = ${props};

0 commit comments

Comments
 (0)