Skip to content

Commit

Permalink
Merge pull request #3696 from weaveworks/3679-add-intermediate-status…
Browse files Browse the repository at this point in the history
…es-to-explorer

Add intermediate statuses to Explorer
  • Loading branch information
opudrovs authored Dec 19, 2023
2 parents bfe1cc1 + e517eae commit ff98845
Show file tree
Hide file tree
Showing 11 changed files with 2,370 additions and 216 deletions.
8 changes: 4 additions & 4 deletions pkg/query/collector/reconciler/reconciler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,11 +258,11 @@ func TestReconciler_Reconcile(t *testing.T) {
FilterFunc: func(object client.Object) bool {
return false
},
StatusFunc: func(obj client.Object) configuration.ObjectStatus {
return configuration.NoStatus
StatusFunc: func(_ client.Object, _ configuration.ObjectKind) (configuration.ObjectStatus, error) {
return configuration.NoStatus, nil
},
MessageFunc: func(obj client.Object) string {
return ""
MessageFunc: func(_ client.Object, _ configuration.ObjectKind) (string, error) {
return "", nil
},
Category: "test",
},
Expand Down
84 changes: 0 additions & 84 deletions pkg/query/configuration/fluxobject_test.go

This file was deleted.

Loading

0 comments on commit ff98845

Please sign in to comment.