Skip to content

Commit

Permalink
fix(runtime): fix local runtime config - websocket configs
Browse files Browse the repository at this point in the history
  • Loading branch information
jghamburg committed Sep 6, 2019
1 parent 3dfd0a4 commit fc4b1dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ <h1>Learning Spring Boot - 2nd Edition</h1>
<script th:inline="javascript">
/*<![CDATA[*/
(function() {
var webServiceUrl = 'ws://lsb2-chat.local.svc.cluster.local';
// var webServiceUrl = 'ws://lsb2-chat.local.svc.cluster.local';
var webServiceUrl = 'ws://localhost:9999';
// Send in new comments via an AJAX call
document.querySelectorAll('button.comment').forEach(function (button) {
button.addEventListener('click', function () {
Expand Down

0 comments on commit fc4b1dc

Please sign in to comment.