Changeset 332 for devel


Ignore:
Timestamp:
03/09/15 23:07:43 (9 years ago)
Author:
bas
Message:

removed obsolete code from errors.py

Location:
devel/5.X
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • devel/5.X/errors.py

    r331 r332  
    66#       $Id: errors.py 429 2005-11-04 13:59:06Z bas $
    77#
    8 errors_txt = {
    9         0 : 'no error',
    10         15001 :  'Unknown Job Identifier',
    11         15002 : 'Undefined Attribute',
    12         15003 : 'attempt to set READ ONLY attribute',
    13         15004 : 'Invalid request',
    14         15005 : 'Unknown batch request',
    15         15006 : 'Too many submit retries',
    16         15007 : 'No permission',
    17         15008 : 'access from host not allowed',
    18         15009 : 'job already exists',
    19         15010 : 'system error occurred',
    20         15011 : 'internal server error occurred',
    21         15012 : 'parent job of dependent in rte que',
    22         15013 : 'unknown signal name',
    23         15014 : 'bad attribute value',
    24         15015 : 'Cannot modify attrib in run state',
    25         15016 : 'request invalid for job state',
    26         15018 : 'Unknown queue name',
    27         15019 : 'Invalid Credential in request',
    28         15020 : 'Expired Credential in request',
    29         15021 : 'Queue not enabled',
    30         15022 : 'No access permission for queue',
    31         15023 : 'Bad user - no password entry',
    32         15024 : 'Max hop count exceeded',
    33         15025 : 'Queue already exists',
    34         15026 : 'incompatable queue attribute type',
    35         15027 : 'Queue Busy (not empty)',
    36         15028 : 'Queue name too long',
    37         15029 : 'Feature',
    38         15030 : 'Cannot enable queue,needs add def',
    39         15031 : 'Protocol (ASN.1) error',
    40         15032 : 'Bad attribute list structure',
    41         15033 : 'No free connections',
    42         15034 : 'No server to connect to',
    43         15035 : 'Unknown resource',
    44         15036 : 'Job exceeds Queue resource limits',
    45         15037 : 'No Default Queue Defined',
    46         15038 : 'Job Not Rerunnable',
    47         15039 : 'Route rejected by all destinations',
    48         15040 : 'Time in Route Queue Expired',
    49         15041 : 'Request to MOM failed',
    50         15042 : '(qsub) cannot access script file',
    51         15043 : 'Stage In of files failed',
    52         15044 : 'Resources temporarily unavailable',
    53         15045 : 'Bad Group specified',
    54         15046 : 'Max number of jobs in queue',
    55         15047 : 'Checkpoint Busy, may be retries',
    56         15048 : 'Limit exceeds allowable',
    57         15049 : 'Bad Account attribute value',
    58         15050 : 'Job already in exit state',
    59         15051 : 'Job files not copied',
    60         15052 : 'unknown job id after clean init',
    61         15053 : 'No Master in Sync Set',
    62         15054 : 'Invalid dependency',
    63         15055 : 'Duplicate entry in List',
    64         15056 : 'Bad DIS based Request Protocol',
    65         15057 : 'cannot execute there',
    66         15058 : 'sister rejected',
    67         15059 : 'sister could not communicate',
    68         15060 : 'req rejected -server shutting down',
    69         15061 : 'not all tasks could checkpoint',
    70         15062 : 'Named node is not in the list',
    71         15063 : 'node-attribute not recognized',
    72         15064 : 'Server has no node list',
    73         15065 : 'Node name is too big',
    74         15066 : 'Node name already exists',
    75         15067 : 'Bad node-attribute value',
    76         15068 : 'State values are mutually exclusive',
    77         15069 : 'Error(s) during global modification of nodes',
    78         15070 : 'could not contact Mom',
    79         15071 : 'no time-shared nodes',
    80         15201 : 'resource unknown',
    81         15202 : 'parameter could not be used',
    82         15203 : 'a parameter needed did not exist',
    83         15204 : "something specified didn't exist",
    84         15205 : 'a system error occured',
    85         15206 : 'only part of reservation made'
    86 }
    878
    889def error():
  • devel/5.X/pbs.py

    r331 r332  
    10051005#       $Id: errors.py 429 2005-11-04 13:59:06Z bas $
    10061006#
    1007 errors_txt = {
    1008         0 : 'no error',
    1009         15001 :  'Unknown Job Identifier',
    1010         15002 : 'Undefined Attribute',
    1011         15003 : 'attempt to set READ ONLY attribute',
    1012         15004 : 'Invalid request',
    1013         15005 : 'Unknown batch request',
    1014         15006 : 'Too many submit retries',
    1015         15007 : 'No permission',
    1016         15008 : 'access from host not allowed',
    1017         15009 : 'job already exists',
    1018         15010 : 'system error occurred',
    1019         15011 : 'internal server error occurred',
    1020         15012 : 'parent job of dependent in rte que',
    1021         15013 : 'unknown signal name',
    1022         15014 : 'bad attribute value',
    1023         15015 : 'Cannot modify attrib in run state',
    1024         15016 : 'request invalid for job state',
    1025         15018 : 'Unknown queue name',
    1026         15019 : 'Invalid Credential in request',
    1027         15020 : 'Expired Credential in request',
    1028         15021 : 'Queue not enabled',
    1029         15022 : 'No access permission for queue',
    1030         15023 : 'Bad user - no password entry',
    1031         15024 : 'Max hop count exceeded',
    1032         15025 : 'Queue already exists',
    1033         15026 : 'incompatable queue attribute type',
    1034         15027 : 'Queue Busy (not empty)',
    1035         15028 : 'Queue name too long',
    1036         15029 : 'Feature',
    1037         15030 : 'Cannot enable queue,needs add def',
    1038         15031 : 'Protocol (ASN.1) error',
    1039         15032 : 'Bad attribute list structure',
    1040         15033 : 'No free connections',
    1041         15034 : 'No server to connect to',
    1042         15035 : 'Unknown resource',
    1043         15036 : 'Job exceeds Queue resource limits',
    1044         15037 : 'No Default Queue Defined',
    1045         15038 : 'Job Not Rerunnable',
    1046         15039 : 'Route rejected by all destinations',
    1047         15040 : 'Time in Route Queue Expired',
    1048         15041 : 'Request to MOM failed',
    1049         15042 : '(qsub) cannot access script file',
    1050         15043 : 'Stage In of files failed',
    1051         15044 : 'Resources temporarily unavailable',
    1052         15045 : 'Bad Group specified',
    1053         15046 : 'Max number of jobs in queue',
    1054         15047 : 'Checkpoint Busy, may be retries',
    1055         15048 : 'Limit exceeds allowable',
    1056         15049 : 'Bad Account attribute value',
    1057         15050 : 'Job already in exit state',
    1058         15051 : 'Job files not copied',
    1059         15052 : 'unknown job id after clean init',
    1060         15053 : 'No Master in Sync Set',
    1061         15054 : 'Invalid dependency',
    1062         15055 : 'Duplicate entry in List',
    1063         15056 : 'Bad DIS based Request Protocol',
    1064         15057 : 'cannot execute there',
    1065         15058 : 'sister rejected',
    1066         15059 : 'sister could not communicate',
    1067         15060 : 'req rejected -server shutting down',
    1068         15061 : 'not all tasks could checkpoint',
    1069         15062 : 'Named node is not in the list',
    1070         15063 : 'node-attribute not recognized',
    1071         15064 : 'Server has no node list',
    1072         15065 : 'Node name is too big',
    1073         15066 : 'Node name already exists',
    1074         15067 : 'Bad node-attribute value',
    1075         15068 : 'State values are mutually exclusive',
    1076         15069 : 'Error(s) during global modification of nodes',
    1077         15070 : 'could not contact Mom',
    1078         15071 : 'no time-shared nodes',
    1079         15201 : 'resource unknown',
    1080         15202 : 'parameter could not be used',
    1081         15203 : 'a parameter needed did not exist',
    1082         15204 : "something specified didn't exist",
    1083         15205 : 'a system error occured',
    1084         15206 : 'only part of reservation made'
    1085 }
    10861007
    10871008def error():
Note: See TracChangeset for help on using the changeset viewer.