Commit 8e8565d0 authored by Liang Ding's avatar Liang Ding

🎨 Fix #12367

parent 08041362
...@@ -52,7 +52,7 @@ import java.sql.Statement; ...@@ -52,7 +52,7 @@ import java.sql.Statement;
* *
* @author <a href="http://88250.b3log.org">Liang Ding</a> * @author <a href="http://88250.b3log.org">Liang Ding</a>
* @author <a href="mailto:dongxu.wang@acm.org">Dongxu Wang</a> * @author <a href="mailto:dongxu.wang@acm.org">Dongxu Wang</a>
* @version 1.2.0.19, Sep 22, 2017 * @version 1.2.0.20, Nov 8, 2017
* @since 1.2.0 * @since 1.2.0
*/ */
@Service @Service
...@@ -83,11 +83,6 @@ public class UpgradeService { ...@@ -83,11 +83,6 @@ public class UpgradeService {
*/ */
private static final String TO_VER = SoloServletListener.VERSION; private static final String TO_VER = SoloServletListener.VERSION;
/**
* Whether the email has been sent.
*/
private static boolean sent = false;
/** /**
* Article repository. * Article repository.
*/ */
...@@ -151,12 +146,10 @@ public class UpgradeService { ...@@ -151,12 +146,10 @@ public class UpgradeService {
return; return;
} }
LOGGER.log(Level.WARN, "Attempt to skip more than one version to upgrade. Expected: {0}; Actually: {1}", FROM_VER, currentVer); LOGGER.log(Level.ERROR, "Attempt to skip more than one version to upgrade. Expected: {0}, Actually: {1}", FROM_VER, currentVer);
notifyUserByEmail();
if (!sent) { System.exit(-1);
notifyUserByEmail();
sent = true;
}
} catch (final Exception e) { } catch (final Exception e) {
LOGGER.log(Level.ERROR, e.getMessage(), e); LOGGER.log(Level.ERROR, e.getMessage(), e);
LOGGER.log(Level.ERROR, LOGGER.log(Level.ERROR,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment