Conflicts:
	ServiceDescriptor.cs

Signed-off-by: Oleg Nenashev <o.v.nenashev@gmail.com>
pull/62/head
Oleg Nenashev 2014-11-29 18:04:50 +03:00
commit 67aa8a143c
1 changed files with 3 additions and 3 deletions

View File

@ -419,7 +419,7 @@ namespace winsw
{ {
get get
{ {
return SingleTimeSpanElement(dom, "waithint", TimeSpan.FromSeconds(15)); return SingleTimeSpanElement(dom.FirstChild, "waithint", TimeSpan.FromSeconds(15));
} }
} }
@ -433,7 +433,7 @@ namespace winsw
{ {
get get
{ {
return SingleTimeSpanElement(dom, "sleeptime", TimeSpan.FromSeconds(1)); return SingleTimeSpanElement(dom.FirstChild, "sleeptime", TimeSpan.FromSeconds(1));
} }
} }
@ -519,7 +519,7 @@ namespace winsw
{ {
get get
{ {
return SingleTimeSpanElement(dom, "resetfailure", TimeSpan.FromDays(1)); return SingleTimeSpanElement(dom.FirstChild, "resetfailure", TimeSpan.FromDays(1));
} }
} }