##// END OF EJS Templates
remove unused kwargs in controller
Juan C. Espinoza -
r1031:f48e7568a388
parent child
Show More
@@ -704,18 +704,9 class ProcUnitConf():
704
704
705 kwargs[parmConfObj.name] = parmConfObj.getValue()
705 kwargs[parmConfObj.name] = parmConfObj.getValue()
706
706
707 #ini = time.time()
708
709 #print "\tRunning the '%s' operation with %s" %(opConfObj.name, opConfObj.id)
710 sts = self.procUnitObj.call(opType = opConfObj.type,
707 sts = self.procUnitObj.call(opType = opConfObj.type,
711 opName = opConfObj.name,
708 opName = opConfObj.name,
712 opId = opConfObj.id,
709 opId = opConfObj.id)
713 **kwargs)
714
715 # total_time = time.time() - ini
716 #
717 # if total_time > 0.002:
718 # print "%s::%s took %f seconds" %(self.name, opConfObj.name, total_time)
719
710
720 is_ok = is_ok or sts
711 is_ok = is_ok or sts
721
712
General Comments 0
You need to be logged in to leave comments. Login now