Skip to content

Commit 9b1289e

Browse files
lu-zhengdaStephenWakely
authored andcommitted
[Oracle] Enable HA support for Oracle integration (#36385)
1 parent 8cffc60 commit 9b1289e

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

pkg/collector/corechecks/oracle/oracle.go

+5
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,11 @@ func checkIntervalExpired(lastRun *time.Time, collectionInterval int64) bool {
153153
return false
154154
}
155155

156+
// IsHASupported returns true if the check supports HA
157+
func (c *Check) IsHASupported() bool {
158+
return true
159+
}
160+
156161
// Run executes the check.
157162
func (c *Check) Run() error {
158163
var allErrors error
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Each section from every release note are combined when the
2+
# CHANGELOG.rst is rendered. So the text needs to be worded so that
3+
# it does not depend on any information only available in another
4+
# section. This may mean repeating some details, but each section
5+
# must be readable independently of the other.
6+
#
7+
# Each section note must be formatted as reStructuredText.
8+
---
9+
enhancements:
10+
- |
11+
Enable HA support for Oracle integration.

0 commit comments

Comments
 (0)