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

DEVPROD-13825: Remove displayStatus from WaterfallTask #8607

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
104 changes: 5 additions & 99 deletions graphql/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion graphql/schema/types/waterfall.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ input WaterfallOptions {
type WaterfallTask {
id: String!
displayName: String!
displayStatus: String!
displayStatusCache: String!
execution: Int!
status: String!
Expand Down
1 change: 0 additions & 1 deletion graphql/tests/query/waterfall/queries/no_filters.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
tasks {
id
displayName
displayStatus
displayStatusCache
execution
status
Expand Down
5 changes: 0 additions & 5 deletions graphql/tests/query/waterfall/results.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@
"tasks": [
{
"displayName": "Some Task",
"displayStatus": "success",
"displayStatusCache": "success",
"execution": 0,
"id": "task_1",
"status": "success"
},
{
"displayName": "Some Other Task",
"displayStatus": "success",
"displayStatusCache": "success",
"execution": 1,
"id": "task_2",
Expand All @@ -39,15 +37,13 @@
"tasks": [
{
"displayName": "Some Task",
"displayStatus": "setup-failed",
"displayStatusCache": "setup-failed",
"execution": 0,
"id": "task_3",
"status": "failed"
},
{
"displayName": "Some Other Task",
"displayStatus": "success",
"displayStatusCache": "success",
"execution": 0,
"id": "task_4",
Expand All @@ -66,7 +62,6 @@
"tasks": [
{
"displayName": "Task Number 5",
"displayStatus": "success",
"displayStatusCache": "success",
"execution": 0,
"id": "task_5",
Expand Down
17 changes: 0 additions & 17 deletions graphql/waterfall_resolver.go

This file was deleted.

Loading