(schema: Schema<any>)
| 124 | } |
| 125 | |
| 126 | async _tryMigrateConfig(schema: Schema<any>) { |
| 127 | this._lastMigrate = this._lastMigrate.then(() => this._actualMigrate(schema)); |
| 128 | await this._lastMigrate; |
| 129 | } |
| 130 | |
| 131 | _get(key: string) { |
| 132 | const parts = key.split('.'); |
no test coverage detected