Github user Ethanlm commented on a diff in the pull request:
https://github.com/apache/storm/pull/2199#discussion_r135591294
--- Diff:
storm-server/src/main/java/org/apache/storm/scheduler/resource/ResourceAwareScheduler.java
---
@@ -42,14 +43,16 @@
private Map<String, Object> conf;
private ISchedulingPriorityStrategy schedulingPrioritystrategy;
private IEvictionStrategy evictionStrategy;
+ private IConfigLoader configLoader;
@Override
public void prepare(Map<String, Object> conf) {
this.conf = conf;
schedulingPrioritystrategy = (ISchedulingPriorityStrategy)
ReflectionUtils.newInstance(
- (String)
conf.get(DaemonConfig.RESOURCE_AWARE_SCHEDULER_PRIORITY_STRATEGY));
+ (String)
conf.get(DaemonConfig.RESOURCE_AWARE_SCHEDULER_PRIORITY_STRATEGY));
--- End diff --
No.. It just accidentally happened..
---
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 [email protected] or file a JIRA ticket
with INFRA.
---