Github user revans2 commented on a diff in the pull request: https://github.com/apache/storm/pull/2241#discussion_r129572165 --- Diff: storm-client/src/jvm/org/apache/storm/daemon/worker/Worker.java --- @@ -155,134 +150,141 @@ public void start() throws Exception { Subject.doAs(subject, new PrivilegedExceptionAction<Object>() { @Override public Object run() throws Exception { - workerState = - new WorkerState(conf, context, topologyId, assignmentId, port, workerId, topologyConf, stateStorage, + return loadWorker(topologyConf, stateStorage, stormClusterState, initCreds, initialCredentials); + } + }); // Subject.doAs(...) --- End diff -- nit: If we are changing this can we just make it a lambda instead? ``` Subject.doAs(subject, () -> loadWorker(topologyConf, stateStorage, stormClusterState, initCreds, initialCredentials)); ```
--- 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. ---