odps-console-basic/src/main/java/com/aliyun/openservices/odps/console/commands/FreezeCommand.java [75:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for (Entry<String, String> property : taskConfig.entrySet()) {
          task.setProperty(property.getKey(), property.getValue());
        }

        runJob(task);
        // on success
        writer.writeError("OK");
        break;
      } catch (UserInterruptException e) {
        throw e;
      } catch (Exception e) {
        if (--retryTime <= 0) {
          throw new ODPSConsoleException(e.getMessage());
        }
        writer.writeError("retry " + retryTime);
        writer.writeDebug(StringUtils.stringifyException(e));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



odps-console-basic/src/main/java/com/aliyun/openservices/odps/console/commands/RestoreCommand.java [75:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for (Entry<String, String> property : taskConfig.entrySet()) {
          task.setProperty(property.getKey(), property.getValue());
        }

        runJob(task);
        // on success
        writer.writeError("OK");
        break;
      } catch (UserInterruptException e) {
        throw e;
      } catch (Exception e) {
        if (--retryTime <= 0) {
          throw new ODPSConsoleException(e.getMessage());
        }
        writer.writeError("retry " + retryTime);
        writer.writeDebug(StringUtils.stringifyException(e));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



