1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

development: Fix compilation

(cherry picked from commit 0b7401a1db1487f768673754451439a956c0e1da)
This commit is contained in:
Ruben S. Montero 2019-02-18 16:03:17 +01:00
parent c55b6c1ed6
commit 38edd7347c

View File

@ -96,9 +96,9 @@ void ReplicaThread::do_replication()
if ( pthread_cond_timedwait(&cond, &mutex, &timeout) == ETIMEDOUT )
{
if ( _prending_requests == true )
if ( _pending_requests == true )
{
NebulaLog::log("RCM", Log::WARN, "Replication timeout with pending requests");
NebulaLog::log("RCM", Log::WARNING, "Replication timeout with pending requests");
}
_pending_requests = retry_request || _pending_requests;