Github user revans2 commented on a diff in the pull request:
https://github.com/apache/storm/pull/2834#discussion_r218116277
--- Diff:
storm-server/src/main/java/org/apache/storm/daemon/supervisor/Supervisor.java
---
@@ -135,7 +135,7 @@ public Supervisor(Map<String, Object> conf, IContext
sharedContext, ISupervisor
(String) conf.get(DaemonConfig.SUPERVISOR_AUTHORIZER), conf);
if (authorizationHandler == null &&
conf.get(DaemonConfig.NIMBUS_AUTHORIZER) != null) {
throw new IllegalStateException("It looks like authorization
is turned on for nimbus but not for the "
- + "supervisor....");
+ + "supervisor.... ( " + DaemonConfig.SUPERVISOR_AUTHORIZER
+ " is not set)");
--- End diff --
Will do on checkin.
---