ZEPPELIN-2164: Typo in Insufficient Privileges popup of Zeppelin

This commit is contained in:
Prabhjyot Singh 2017-02-24 11:47:24 +05:30
parent 32840e656d
commit c4c8222f83

View file

@ -717,7 +717,7 @@ public class NotebookServer extends WebSocketServlet
LOG.info("Cannot {}. Connection readers {}. Allowed readers {}", op, userAndRoles, allowed);
conn.send(serializeMessage(new Message(OP.AUTH_INFO).put("info",
"Insufficient privileges to " + op + "note.\n\n" + "Allowed users or roles: " + allowed
"Insufficient privileges to " + op + " note.\n\n" + "Allowed users or roles: " + allowed
.toString() + "\n\n" + "But the user " + userName + " belongs to: " + userAndRoles
.toString())));
}