Skip to content

Commit

Permalink
Merge pull request #159 from zhx828/update-ws-protocal
Browse files Browse the repository at this point in the history
Configure websocket protocol through config file
  • Loading branch information
zhx828 committed Jul 17, 2023
2 parents 3c771fc + 9d98a05 commit 729a30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/factories/VariantFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ angular.module('oncokbApp').factory('DataValidation', function(OncoKB) {
'use strict';
return {
getWebSocket: function () {
return new WebSocket('ws://' + OncoKB.config.websocketApiLink + 'curation/validation');
return new WebSocket(OncoKB.config.websocketApiLink + 'curation/validation');
}
};
});
Expand Down

0 comments on commit 729a30d

Please sign in to comment.