Skip to content

Commit

Permalink
Merge pull request #322 from quartz-scheduler/quart-2.3.x-zemian-pr212
Browse files Browse the repository at this point in the history
Correct wrong variable null check
  • Loading branch information
zemian authored Feb 8, 2019
2 parents fe84e58 + 4dec148 commit 4d1a0ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* #281 Fix no setter for dataSource property validateOnCheckout
* #264 Fix no setter for dataSource property discardIdleConnectionsSeconds
* #293 Setup Azure CI server for Quartz project
* #212 QuartzInitializerListener: fix a typo

## quartz-2.3.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void contextInitialized(ServletContextEvent sce) {
performShutdown = Boolean.valueOf(shutdownPref).booleanValue();
}
String shutdownWaitPref = servletContext.getInitParameter("quartz:wait-on-shutdown");
if (shutdownPref != null) {
if (shutdownWaitPref != null) {
waitOnShutdown = Boolean.valueOf(shutdownWaitPref).booleanValue();
}

Expand Down

0 comments on commit 4d1a0ee

Please sign in to comment.