fix(TBD-9669): add method signature for class RunStat (#2888)

* fix(TBD-9669): add method signature for class RunStat

add a new signature for the method "log"

* fix(TBD-9669): add method signature for failed tujs

fix variable name as it lead to compile error
This commit is contained in:
Antoine Parent
2019-12-09 10:16:15 +01:00
committed by GitHub
parent 36102a662f
commit ab6aa521e7

View File

@@ -470,6 +470,15 @@ public class RunStat implements Runnable {
}
}
}
/**
* work for avoiding the 65535 issue
*/
public synchronized void log(Map<String, Object> resourceMap, String iterateId, int mode, int nbLine, String connectionUniqueName) {
if(resourceMap.get("inIterateVComp") == null){
log(connectionUniqueName+iterateId, mode, nbLine);
}
}
/**
* work for avoiding the 65535 issue