Skip to content

Commit

Permalink
Default to DefaultHttpNotifierSelector if override not set
Browse files Browse the repository at this point in the history
  • Loading branch information
sghill committed Oct 26, 2021
1 parent 4a158e3 commit 6f41a39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ HttpNotifierSelector providesHttpNotifierSelector(@StashNotifierDefault HttpNoti
@Named("preferredHttpNotifierSelector")
String providesPreferredHttpNotifierSelector() {
String override = HttpNotifierSelector.class.getName() + ".className";
return System.getProperty(override, DefaultApacheHttpNotifier.class.getName());
return System.getProperty(override, DefaultHttpNotifierSelector.class.getName());
}
}

0 comments on commit 6f41a39

Please sign in to comment.