Another try ad getting write to work

This commit is contained in:
2015-03-19 16:12:35 +01:00
parent 0097a2f3cb
commit 0d0c90cee7
4 changed files with 38 additions and 5 deletions

View File

@@ -241,6 +241,9 @@ static int DriveTaskFunc(void *data)
} else {
ExeInterest(pServ->pExecutor,taskData->name, "finished with problem");
}
if(taskData->pCon->remote){
SCPrintf(taskData->pCon,eValue,"TASKFINISHED:%s", taskData->name);
}
traceSys("drive","DriveTask %s finished with state %d", taskData->name,status);
return 0;
}
@@ -393,6 +396,9 @@ static int CountTaskFunc(void *data)
ExeInterest(pServ->pExecutor,taskData->name, "finished with problem");
}
traceSys("count","CountTask %s finished with state %d", taskData->name,status);
if(taskData->pCon->remote){
SCPrintf(taskData->pCon,eValue,"TASKFINISHED:%s", taskData->name);
}
return 0;
}
/*--------------------------------------------------------------------------*/