Skip to content

Commit

Permalink
Merge pull request #502 from Abirdcfly/qfix
Browse files Browse the repository at this point in the history
fix: app run get error knowledgebase has no ns setting
  • Loading branch information
bjwswang authored Jan 5, 2024
2 parents f0c8619 + 88d29e3 commit aee00f5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkg/application/base/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@ type Node interface {

func NewBaseNode(appNamespace, nodeName string, ref arcadiav1alpha1.TypedObjectReference) BaseNode {
return BaseNode{
name: nodeName,
Ref: ref,
prev: make([]Node, 0),
next: make([]Node, 0),
appNamespace: appNamespace,
name: nodeName,
Ref: ref,
prev: make([]Node, 0),
next: make([]Node, 0),
}
}

Expand Down

0 comments on commit aee00f5

Please sign in to comment.