Skip to content

Commit

Permalink
[HOPSWORKS-1012] Fix metadata designer (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
kouzant authored and tkakantousis committed Apr 4, 2019
1 parent 74feebf commit f89df8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void message(Session session, Message msg) throws GenericException, Metad

@OnClose
public void onClose(Session session) {
logger.log(Level.INFO,
logger.log(Level.FINEST,
"HOPSWORKS: USER {0} SESSION DESTROYED sessions {1}",
new Object[]{this.sender, session.getOpenSessions().size()});
Message message = new TextMessage(this.sender, " Left");
Expand Down
3 changes: 1 addition & 2 deletions hopsworks-web/yo/app/scripts/services/MetadataService.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ angular.module('hopsWorksApp')
var processMessage = function (data) {

try {
var response = {status: data.status, board: data.errorMsg};
//console.log('sender: ' + data.sender + ' message: ' + data.errorMsg);
var response = {status: data.status, board: data.message};

/*
* Whenever a message arrives resolve the defer, so the client gets back their promise.
Expand Down

0 comments on commit f89df8a

Please sign in to comment.