Skip to content

Commit

Permalink
fix(indexer-agent): broken comparison of indexing decisions
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Mar 20, 2024
1 parent 08789b9 commit ff9b217
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/indexer-agent/src/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1079,8 +1079,8 @@ export class Agent {
])
const indexingStatus = indexingStatuses.find(
status =>
status.subgraphDeployment ==
deploymentAllocationDecision.deployment,
status.subgraphDeployment.ipfsHash ==
deploymentAllocationDecision.deployment.ipfsHash,
)
const failsHealthCheck =
(indexingStatus &&
Expand Down

0 comments on commit ff9b217

Please sign in to comment.