Skip to content

Commit

Permalink
Merge pull request #2957 from threefoldtech/development_2.6_deploymen…
Browse files Browse the repository at this point in the history
…t_timestamp

Fix nodes last deployment timestamp
  • Loading branch information
samaradel authored Jun 11, 2024
2 parents ae864d9 + 5b92ddd commit 539dac6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ export default {
}
async function getLastDeploymentTime() {
if (props.node?.id) {
if (props.node?.id && props.node?.status == "up") {
try {
const obj = await gridProxyClient.nodes.statsById(props.node.nodeId);
lastDeploymentTime.value = obj.users.last_deployment_timestamp;
Expand Down

0 comments on commit 539dac6

Please sign in to comment.