(ctx context.Context, dbName string)
| 1722 | } |
| 1723 | |
| 1724 | func (sc *ServerContext) unsuspendDatabase(ctx context.Context, dbName string) (*db.DatabaseContext, error) { |
| 1725 | sc._databasesLock.Lock() |
| 1726 | defer sc._databasesLock.Unlock() |
| 1727 | |
| 1728 | return sc._unsuspendDatabase(ctx, dbName) |
| 1729 | } |
| 1730 | |
| 1731 | func (sc *ServerContext) _unsuspendDatabase(ctx context.Context, dbName string) (*db.DatabaseContext, error) { |
| 1732 | dbCtx := sc._databases[dbName] |