We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0c8952 commit cd5d7d9Copy full SHA for cd5d7d9
server/json-rpc/src/lib.rs
@@ -204,7 +204,7 @@ impl<R: SubgraphRegistrar> ServerState<R> {
204
205
/// Handler for the `subgraph_resume` endpoint.
206
async fn resume_handler(&self, params: SubgraphPauseParams) -> JsonRpcResult<GraphValue> {
207
- info!(&self.logger, "Received subgraph_pause request"; "params" => format!("{:?}", params));
+ info!(&self.logger, "Received subgraph_resume request"; "params" => format!("{:?}", params));
208
209
match self.registrar.resume_subgraph(¶ms.deployment).await {
210
Ok(_) => Ok(Value::Null),
0 commit comments