Copilot commented on code in PR #812: URL: https://github.com/apache/incubator-seata-go/pull/812#discussion_r2094676826
########## pkg/saga/statemachine/store/repository/state_machine_repository.go: ########## @@ -43,7 +43,7 @@ type StateMachineRepositoryImpl struct { stateMachineMapById map[string]statelang.StateMachine stateMachineMapByNameAndTenant map[string]statelang.StateMachine - stateLangStore *db.StateLangStore + stateLangStore core.StateLangStore Review Comment: Changing the `stateLangStore` field from `*db.StateLangStore` to `core.StateLangStore` is a breaking API change; consider documenting this change or providing migration guidance for consumers. ```suggestion stateLangStore core.StateLangStore // Updated from *db.StateLangStore to core.StateLangStore. Consumers should update their code accordingly. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@seata.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@seata.apache.org For additional commands, e-mail: notifications-h...@seata.apache.org