休眠1秒后退出

This commit is contained in:
xiongziliang 2019-05-28 09:50:05 +08:00
parent 6442821d2b
commit 7e770841d1

View File

@ -291,9 +291,9 @@ int main(int argc,char *argv[]) {
}
unInstallWebApi();
unInstallWebHook();
//休眠3秒再退出,防止资源释放顺序错误
//休眠1秒再退出,防止资源释放顺序错误
InfoL << "程序退出中,请等待...";
sleep(3);
sleep(1);
InfoL << "程序退出完毕!";
return 0;
}