merged with fixes

This commit is contained in:
onysd 2026-09-09 02:49:30 +03:00
parent a9e758b712
commit 2f1818d656
176 changed files with 9000 additions and 907 deletions

View file

@ -27,7 +27,7 @@ func AcquireBlobMigrationLock(ctx context.Context, dsn string) (*BlobStorageLock
}
func acquireBlobStorageLock(ctx context.Context, dsn string, shared bool) (*BlobStorageLock, error) {
conn, err := pgx.Connect(ctx, dsn)
conn, err := connectPostgresAdmitted(ctx, dsn)
if err != nil {
return nil, fmt.Errorf("connect for blob storage lock: %w", err)
}