-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
Description
I've managed to deploy a graph-node that logs when it's behind the Ethereum node.
Apr 01 12:19:55.565 INFO Syncing 1 blocks from Ethereum, code: BlockIngestionStatus, blocks_needed: 1, blocks_behind: 1, latest_block_head: 14500316, current_block_head: 14500315, provider: rpinode, component: BlockIngestor
Apr 01 12:20:08.784 INFO Syncing 1 blocks from Ethereum, code: BlockIngestionStatus, blocks_needed: 1, blocks_behind: 1, latest_block_head: 14500317, current_block_head: 14500316, provider: rpinode, component: BlockIngestor
Apr 01 12:20:25.967 INFO Syncing 1 blocks from Ethereum, code: BlockIngestionStatus, blocks_needed: 1, blocks_behind: 1, latest_block_head: 14500318, current_block_head: 14500317, provider: rpinode, component: BlockIngestor
I've also managed to deploy a subgraph. But when I go to its website, I get an error:
{
"errors": [
"{\n \"errors\": [\n {\n \"message\": \"Store error: query execution failed: Subgraph `QmfYShvt1zUyeMijkAJxTMYxMRR1NwSPRa81gXAJmUenz5` has not started syncing yet. Wait for it to ingest a few blocks before querying it\"\n }\n ]\n}"
]
}
I don't understand how to debug this. My logs never mention any synching of this subgraph. How do I find out what is happening?
jessepinkman9900