Skip to content

Commit

Permalink
Improve GraphQL re-build error
Browse files Browse the repository at this point in the history
  • Loading branch information
sandreae committed Jun 26, 2024
1 parent 57a35b7 commit f8ecf8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aquadoggo/src/graphql/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ impl GraphQLSchemaManager {
async fn rebuild(shared: GraphQLSharedData, schemas: GraphQLSchemas) {
match build_root_schema(shared.store, shared.tx, shared.schema_provider).await {
Ok(schema) => schemas.lock().await.push(schema),
Err(err) => warn!("Error building GraphQL schema: {}", err),
Err(err) => warn!("Can't re-build GraphQL schema: {}", err),
}
}

Expand Down

0 comments on commit f8ecf8e

Please sign in to comment.