Github user corneadoug commented on the issue: https://github.com/apache/zeppelin/pull/1140 @prabhjyotsingh I got it fixed by only replacing the logout function in the front-end with: ``` $http.post(logoutURL) .error(function(response) { console.log('logout error %o', response); }) .success(function(response) { $rootScope.userName = response.body.principal; $rootScope.ticket.principal = response.body.principal; $rootScope.ticket.ticket = response.body.ticket; $rootScope.ticket.roles = response.body.role; BootstrapDialog.show({ message: 'Logout Success' }); setTimeout(function() { window.location.replace('/'); }, 1000); }); ``` This could probably use some ngToast when error
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---