IcingaConfig: generation time is INT (ms)

This commit is contained in:
Thomas Gelf 2015-06-23 16:07:34 +02:00
parent ae4f80444a
commit ae6b7367dc
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ class IcingaConfig
->createFileFromDb('user')
;
$this->generationTime = (microtime(true) - $start) * 1000;
$this->generationTime = (int) ((microtime(true) - $start) * 1000);
return $this;
}