mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 15:24:24 +08:00
* ref(etl): Rename ETL Replication to Replication and update docs * Fix * Fix * Fix * Fix * Fix
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
export const STATUS_REFRESH_FREQUENCY_MS: number = 5000
|
|
|
|
export enum PipelineStatusName {
|
|
FAILED = 'failed',
|
|
STARTING = 'starting',
|
|
STARTED = 'started',
|
|
STOPPED = 'stopped',
|
|
STOPPING = 'stopping',
|
|
UNKNOWN = 'unknown',
|
|
}
|