odps-console-basic/src/main/java/com/aliyun/openservices/odps/console/commands/ArchiveCommand.java [84:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                runJob(task);
                // 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/FreezeCommand.java [79:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        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));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



