use heavy task by default

This commit is contained in:
lxsang
2018-10-14 21:48:51 +02:00
parent 61abd03669
commit 133cb58e90
3 changed files with 3 additions and 3 deletions

View File

@ -205,7 +205,7 @@ int main(int argc, char* argv[])
#endif
// create callback for the server
task = antd_create_task(accept_request,(void*)request, finish_request );
task->type = LIGHT;
//task->type = LIGHT;
antd_add_task(&scheduler, task);
}