Skip to content
This repository was archived by the owner on May 5, 2026. It is now read-only.

Commit 7bc8590

Browse files
committed
Fix port bug due to OpenShift v2
1 parent 882323a commit 7bc8590

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/webapp/js/live/services.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ app.factory('WebSocketService', function($window) {
1212

1313
var appPath = $window.location.pathname.split('/')[1];
1414
var host = $window.location.hostname;
15-
var port = "8000";
15+
var port = "8080";
1616
var protocol = "ws";
1717
if (angular.equals(host, 'localhost') ){
1818
port = '8080';

src/main/webapp/js/websocket.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var idMatch = '1234';
33

44
var appPath = window.location.pathname.split('/')[1];
55
var host = window.location.hostname;
6-
var port = "8000";
6+
var port = "8080";
77

88
if (host == 'localhost') {
99
port = '8080';

0 commit comments

Comments
 (0)