Skip to content

Commit

Permalink
server: subgraph_resume mislabelled
Browse files Browse the repository at this point in the history
  • Loading branch information
shiyasmohd committed Aug 8, 2024
1 parent b0c8952 commit cd5d7d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/json-rpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ impl<R: SubgraphRegistrar> ServerState<R> {

/// Handler for the `subgraph_resume` endpoint.
async fn resume_handler(&self, params: SubgraphPauseParams) -> JsonRpcResult<GraphValue> {
info!(&self.logger, "Received subgraph_pause request"; "params" => format!("{:?}", params));
info!(&self.logger, "Received subgraph_resume request"; "params" => format!("{:?}", params));

match self.registrar.resume_subgraph(&params.deployment).await {
Ok(_) => Ok(Value::Null),
Expand Down

0 comments on commit cd5d7d9

Please sign in to comment.