Skip to content

Commit

Permalink
Merge pull request #26 from olivergondza/fix-startup
Browse files Browse the repository at this point in the history
  • Loading branch information
emsa23 committed May 12, 2015
2 parents 6592055 + 12f7073 commit c9cca9f
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -25,6 +25,7 @@

import static hudson.init.InitMilestone.JOB_LOADED;
import static hudson.init.InitMilestone.PLUGINS_STARTED;
import static hudson.init.InitMilestone.EXTENSIONS_AUGMENTED;
import hudson.Plugin;
import hudson.init.Initializer;
import hudson.model.Items;
Expand Down Expand Up @@ -54,7 +55,7 @@ public static void addAliases() {
Items.XSTREAM2.addCompatibilityAlias("hudson.queueSorter.PrioritySorterJobColumn", PrioritySorterJobColumn.class);
}

@Initializer(before = JOB_LOADED)
@Initializer(after = EXTENSIONS_AUGMENTED)
public static void init1() {
// Check for any Legacy Configuration and init the Configuration
LOGGER.info("Configuring the Priority Sorter ...");
Expand Down

0 comments on commit c9cca9f

Please sign in to comment.