Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui: change 'Physcial Replication Producer' category to 'Replication Producer' #127374

Merged
merged 3 commits into from
Jul 18, 2024
Merged
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
12 changes: 10 additions & 2 deletions pkg/ui/workspaces/cluster-ui/src/jobs/util/jobOptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ export function jobToVisual(job: Job): JobStatusVisual {
if (job.type === "CHANGEFEED") {
return JobStatusVisual.BadgeOnly;
}
if (job.type === "REPLICATION STREAM PRODUCER") {
if (
job.type === "REPLICATION STREAM PRODUCER" ||
job.type === "LOGICAL REPLICATION INGESTION"
) {
return JobStatusVisual.BadgeOnly;
}
if (job.type === "REPLICATION STREAM INGESTION") {
Expand Down Expand Up @@ -202,9 +205,14 @@ export const typeOptions = [
},
{
value: JobType.REPLICATION_STREAM_PRODUCER.toString(),
name: "Physical Replication Producer",
name: "Replication Producer",
key: jobTypeKeys[JobType.REPLICATION_STREAM_PRODUCER],
},
{
value: JobType.LOGICAL_REPLICATION.toString(),
name: "Logical Replication Ingestion",
key: jobTypeKeys[JobType.LOGICAL_REPLICATION],
},
{
value: JobType.AUTO_SPAN_CONFIG_RECONCILIATION.toString(),
name: "Span Config Reconciliation",
Expand Down
Loading