Schedule pending services using the retry interval.

This commit is contained in:
Gunnar Beutner 2013-01-28 13:38:18 +01:00
parent 3846a10f0e
commit c563736588

View File

@ -338,7 +338,7 @@ ServiceStateType Service::GetStateType(void) const
Value value = Get("state_type"); Value value = Get("state_type");
if (value.IsEmpty()) if (value.IsEmpty())
return StateTypeHard; return StateTypeSoft;
int ivalue = static_cast<int>(value); int ivalue = static_cast<int>(value);
return static_cast<ServiceStateType>(ivalue); return static_cast<ServiceStateType>(ivalue);