removing a debug trick

This commit is contained in:
samcake 2016-03-25 16:18:04 -07:00
parent c23640249e
commit 5190878db2

View file

@ -269,7 +269,7 @@ public:
void run() override {
while (!_quit) {
QThread::sleep(HEARTBEAT_UPDATE_INTERVAL_SECS);
#ifdef ____NDEBUG
#ifdef NDEBUG
auto now = usecTimestampNow();
auto lastHeartbeatAge = now - _heartbeat;
if (lastHeartbeatAge > MAX_HEARTBEAT_AGE_USECS) {