-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixing dc and xdr stat collection #63
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #63 +/- ##
==========================================
- Coverage 36.24% 35.06% -1.18%
==========================================
Files 23 23
Lines 5615 5592 -23
==========================================
- Hits 2035 1961 -74
- Misses 3441 3500 +59
+ Partials 139 131 -8 ☔ View full report in Codecov by Sentry. |
func GetASConfig(path *string, conn *deployment.ASConn, aerospikePolicy *aero.ClientPolicy) ( | ||
confToReturn interface{}, err error) { | ||
func GetASConfig(paths []string, conn *deployment.ASConn, aerospikePolicy *aero.ClientPolicy) ( | ||
confToReturn map[string]interface{}, err error) { | ||
h := aero.Host{ | ||
Name: conn.AerospikeHostName, | ||
Port: conn.AerospikePort, | ||
TLSName: conn.AerospikeTLSName, | ||
} | ||
asinfo := info.NewAsInfo(conn.Log, &h, aerospikePolicy) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kindly close the connection opened by the client, there is a connection leak
No description provided.