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
1 changed files with 1 additions and 1 deletions

View File

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