Skip to content

Commit

Permalink
fix check node status condition
Browse files Browse the repository at this point in the history
  • Loading branch information
samaradel committed Jun 11, 2024
1 parent 3fec702 commit 5b92ddd
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 && props.node?.status !== "down") {
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 5b92ddd

Please sign in to comment.