Skip to content

Commit

Permalink
cherry-pick b0d9c13 (#495)
Browse files Browse the repository at this point in the history
Signed-off-by: Leo Li <[email protected]>
Co-authored-by: Christoph Stäbler <[email protected]>
Leo6Leo and creydr authored Jan 18, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 32b8dea commit 8d279cf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/apis/flows/v1/sequence_lifecycle.go
Original file line number Diff line number Diff line change
@@ -186,7 +186,11 @@ func (ss *SequenceStatus) setAddress(address *duckv1.Addressable) {
ss.Address = duckv1.Addressable{}
sCondSet.Manage(ss).MarkUnknown(SequenceConditionAddressable, "emptyAddress", "addressable is nil")
} else {
ss.Address = duckv1.Addressable{URL: address.URL}
ss.Address = duckv1.Addressable{
URL: address.URL,
CACerts: address.CACerts,
Audience: address.Audience,
}
sCondSet.Manage(ss).MarkTrue(SequenceConditionAddressable)
}
}

0 comments on commit 8d279cf

Please sign in to comment.