diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-02-24 20:27:03 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-02-24 20:27:03 -0500 |
commit | 4055b6d303da775580ab299145788c0cd16c0d45 (patch) | |
tree | ba3012b0cfa2e2201fdb7d05bd1707e7d81efc8d /doc/status.txt | |
parent | 16f95094209faeb7f6fcdb0d9ac498360e7a3e42 (diff) | |
download | vyos-cloud-init-4055b6d303da775580ab299145788c0cd16c0d45.tar.gz vyos-cloud-init-4055b6d303da775580ab299145788c0cd16c0d45.zip |
fix end/start in doc
Diffstat (limited to 'doc/status.txt')
-rw-r--r-- | doc/status.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/status.txt b/doc/status.txt index 9c2f4b89..5958fa85 100644 --- a/doc/status.txt +++ b/doc/status.txt @@ -14,17 +14,17 @@ status.json's format is: 'v1': { 'init': { errors: [] # list of strings for each error that occurred - start: integer # time.time() that this stage started or None - end: integer # time.time() that this stage finished or None + start: float # time.time() that this stage started or None + end: float # time.time() that this stage finished or None }, 'init-local': { - 'errors': [], 'start': <int>, 'end' <int> # (same as 'init' above) + 'errors': [], 'start': <float>, 'end' <float> # (same as 'init' above) }, 'modules-config': { - 'errors': [], 'start': <int>, 'end' <int> # (same as 'init' above) + 'errors': [], 'start': <float>, 'end' <float> # (same as 'init' above) }, 'modules-final': { - 'errors': [], 'start': <int>, 'end' <int> # (same as 'init' above) + 'errors': [], 'start': <float>, 'end' <float> # (same as 'init' above) }, 'datasource': string describing datasource found or None 'stage': string representing stage that is currently running |