fix(core): guard mq registry cleanup
This commit is contained in:
parent
68c446cd3e
commit
693eb0dbb9
|
|
@ -638,6 +638,8 @@ impl AppState {
|
|||
pool: PoolKind,
|
||||
config: &ConnectionConfig,
|
||||
) {
|
||||
// mq_registry only exists in mq-admin builds; other builds reject MQ connects before a pool is created.
|
||||
#[cfg(feature = "mq-admin")]
|
||||
if matches!(pool, PoolKind::MessageQueue) {
|
||||
self.mq_registry.drop_connection(connection_id).await;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue