Skip to content

Commit

Permalink
Modify apply_semi_model graphql api
Browse files Browse the repository at this point in the history
  • Loading branch information
kimhanbeom committed Dec 6, 2023
1 parent 0cf62fc commit b0936dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphql/semi_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl SemiModelMutation {
let serialized_semi_model = bincode::DefaultOptions::new().serialize(&list)?;
let agent_manager = ctx.data::<BoxedAgentManager>()?;
agent_manager
.broadcast_trusted_user_agent_list(&serialized_semi_model)
.broadcast_semi_model_list(&serialized_semi_model)
.await?;
Ok(true)
}
Expand Down

0 comments on commit b0936dc

Please sign in to comment.