Navigation Menu

Skip to content

Commit

Permalink
[FIXED JENKINS-43611] Fix AllView name migration log message (#2821)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck authored and oleg-nenashev committed Apr 15, 2017
1 parent bd2ccfb commit e0017ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/AllView.java
Expand Up @@ -164,7 +164,7 @@ public static String migrateLegacyPrimaryAllViewLocalizedName(@Nonnull List<View
// bingo JENKINS-38606 detected
LOGGER.log(Level.INFO,
"JENKINS-38606 detected for AllView in {0}; renaming view from {1} to {2}",
new Object[]{allView.owner.getUrl(), DEFAULT_VIEW_NAME});
new Object[]{allView.owner.getUrl(), primaryView, DEFAULT_VIEW_NAME});
allView.name = DEFAULT_VIEW_NAME;
return DEFAULT_VIEW_NAME;
}
Expand Down

0 comments on commit e0017ae

Please sign in to comment.