Skip to content

Commit

Permalink
cherry-pick b0d9c13 (#494)
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]>
  • Loading branch information
Leo6Leo and creydr authored Jan 18, 2024
1 parent 2d2c4d5 commit 60c79be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/apis/flows/v1/sequence_lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@ 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,
}
sCondSet.Manage(ss).MarkTrue(SequenceConditionAddressable)
}
}

0 comments on commit 60c79be

Please sign in to comment.