4 |
|
import string |
5 |
|
from ServerCommunicator import ServerCommunicator |
6 |
|
from StatusServer import StatusServer |
7 |
+ |
from Cleaner import Cleaner |
8 |
|
|
9 |
|
class CleanerServer(Cleaner): |
10 |
|
|
37 |
|
try: |
38 |
|
csCommunicator.cleanTask(taskuuid) |
39 |
|
except Exception, e: |
40 |
< |
msg = "Client Server comunication failed about cleanJobs: task " + taskuuid |
40 |
> |
msg = "Client Server comunication failed about cleanJobs: task \n" + taskuuid |
41 |
> |
msg += "Only local working directory will be removed." |
42 |
|
common.logger.debug( msg) |
43 |
|
pass |
44 |
|
|