From 3f85bf6ca6bfee872cbeafbe78a392de2930b238 Mon Sep 17 00:00:00 2001
From: test <pansen626@sina.com>
Date: 星期一, 22 四月 2019 09:50:11 +0800
Subject: [PATCH] 修改人员异常的大于小于设置,并使用-1作为不生效以应对单边限制
---
QiaoJiaSystem/FaceDetectServer/main.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/QiaoJiaSystem/FaceDetectServer/main.cpp b/QiaoJiaSystem/FaceDetectServer/main.cpp
index 425bdde..f2820dc 100644
--- a/QiaoJiaSystem/FaceDetectServer/main.cpp
+++ b/QiaoJiaSystem/FaceDetectServer/main.cpp
@@ -29,8 +29,8 @@
int threadMax = atol(ich->getProperties()->getProperty("user.thread.max").c_str());
#endif
ich->getProperties()->setProperty("Ice.ThreadPool.Server.SizeMax",to_string(threadMax));
- appPref.setLongData("gpu.index",atol(gpuIndex.c_str()));
- appPref.setLongData("thread.max", threadMax);
+ appPref.setIntData("gpu.index",atol(gpuIndex.c_str()));
+ appPref.setIntData("thread.max", threadMax);
auto adapter = ich->createObjectAdapter(adapterName);
adapter->add(new FaceDetectServerI(), Ice::stringToIdentity(identity));
--
Gitblit v1.8.0