Changeset 1202 for DCWoRMS/branches/coolemall/src/simulator
- Timestamp:
- 08/28/13 15:22:43 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/simulator/workload/reader/archive/swf/QcgSWFJobReader.java
r1189 r1202 41 41 private Log log = LogFactory.getLog(QcgSWFJobReader.class); 42 42 43 private static String DEFAULT_PATH_TO_APP_PROFILES = "";43 //private static String DEFAULT_PATH_TO_APP_PROFILES = ""; 44 44 45 45 protected String currntJobID; … … 224 224 String appName = null; 225 225 if(pathToAppProfile == null){ 226 if(value != -1){ 226 if(value == -1 && appTypeGen != null){ 227 appName = appTypeGen.randomAppType(); 228 } 229 /*if(value != -1){ 227 230 appName = String.valueOf(value); 228 231 } else if(appTypeGen != null){ 229 232 appName = appTypeGen.randomAppType(); 230 233 } 231 pathToAppProfile = DEFAULT_PATH_TO_APP_PROFILES + appName; 234 pathToAppProfile = DEFAULT_PATH_TO_APP_PROFILES + appName;*/ 232 235 } else { 233 236 String fullAppName = pathToAppProfile.substring(pathToAppProfile.lastIndexOf('/') + 1, pathToAppProfile.length());
Note: See TracChangeset
for help on using the changeset viewer.