Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions console/src/platform/maintained-objects/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ export interface MaintainedObjectLag {
* initial snapshot.
*/
export interface MaintainedObjectSourceStatus {
/** One of `created`, `starting`, `running`, `paused`, `stalled`, `failed`. */
/** One of `created`, `starting`, `running`, `paused`, `stalled`, or `dropped`. */
status: string;
/** Populated when the source is `stalled` or `failed`. */
/** Populated when the source is `stalled`. */
error: string | null;
/** Null while no replica has reported statistics yet. */
snapshotCommitted: boolean | null;
Expand Down
Loading