Browse Source

REPORT-22779 更新升级后重启失败

research/11.0
pengda 5 years ago
parent
commit
54cb175907
  1. 6
      designer-base/src/main/java/com/fr/design/RestartHelper.java

6
designer-base/src/main/java/com/fr/design/RestartHelper.java

@ -29,7 +29,7 @@ public class RestartHelper {
public static final String RECORD_FILE = StableUtils.pathJoin(StableUtils.getInstallHome(), "delete.properties"); public static final String RECORD_FILE = StableUtils.pathJoin(StableUtils.getInstallHome(), "delete.properties");
public static final String MOVE_FILE = StableUtils.pathJoin(StableUtils.getInstallHome(), "move.properties"); public static final String MOVE_FILE = StableUtils.pathJoin(StableUtils.getInstallHome(), "move.properties");
private static OSBasedAction osBasedAction; private static OSBasedAction restartAction;
/** /**
* 把要删除的文件都记录到delete.properties中 * 把要删除的文件都记录到delete.properties中
* *
@ -166,7 +166,7 @@ public class RestartHelper {
}catch (Exception e){ }catch (Exception e){
FineLoggerFactory.getLogger().error(e.getMessage(), e); FineLoggerFactory.getLogger().error(e.getMessage(), e);
} }
osBasedAction.execute(filesToBeDelete); restartAction.execute(filesToBeDelete);
} catch (Exception e) { } catch (Exception e) {
FineLoggerFactory.getLogger().error(e.getMessage(), e); FineLoggerFactory.getLogger().error(e.getMessage(), e);
}finally { }finally {
@ -185,6 +185,6 @@ public class RestartHelper {
* 提前初始化重启动作 * 提前初始化重启动作
*/ */
public static void initRestartAction(){ public static void initRestartAction(){
osBasedAction = OSSupportCenter.getAction(RestartAction.class); restartAction = OSSupportCenter.getAction(RestartAction.class);
} }
} }
Loading…
Cancel
Save