Disable broadcasting migration events and bump version

This commit is contained in:
2022-03-29 08:46:24 -05:00
parent 1fde692a65
commit 1288e51de0
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import {Migration} from '../Migration'
import {BaseEvent} from '../../../support/bus'
import {Awaitable} from '../../../util'
/**
* Generic base-class for migration-related events.
@@ -10,4 +11,8 @@ export abstract class MigrationEvent extends BaseEvent {
) {
super()
}
shouldBroadcast(): Awaitable<boolean> {
return false
}
}