We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7c09ea commit b812d25Copy full SHA for b812d25
lib/check/checkKubernetes.py
@@ -138,9 +138,9 @@ def on_pod(item) -> dict:
138
last_state['last_state_reason'] = ls.reason
139
last_state['last_state_exit_code'] = ls.exit_code
140
last_state['last_state_started_at'] = \
141
- ls.started_at.timestamp()
+ int(ls.started_at.timestamp())
142
last_state['last_state_finished_at'] = \
143
- ls.finished_at.timestamp()
+ int(ls.finished_at.timestamp())
144
145
restarts += cs.restart_count
146
terminated = cs.state.terminated
lib/version.py
@@ -1 +1 @@
1
-__version__ = '3.2.0-alpha1'
+__version__ = '3.2.0-alpha2'
0 commit comments