mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 09:50:33 -04:00
1195c8e1f2
* Use new table component for replication page
* Render replicas in destinations page + support restart, drop, create replicas
* Fix
* Address 🐰
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
export const STATUS_REFRESH_FREQUENCY_MS: number = 10000 // 10 seconds
|
|
|
|
export enum PipelineStatusName {
|
|
FAILED = 'failed',
|
|
STARTING = 'starting',
|
|
STARTED = 'started',
|
|
STOPPED = 'stopped',
|
|
STOPPING = 'stopping',
|
|
UNKNOWN = 'unknown',
|
|
}
|