-
Notifications
You must be signed in to change notification settings - Fork 4
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
APPS-1321 Add support for configuring Aerospike cluster password in Secret Agent #248
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## v2 #248 +/- ##
==========================================
- Coverage 28.09% 27.79% -0.30%
==========================================
Files 39 39
Lines 2189 2245 +56
==========================================
+ Hits 615 624 +9
- Misses 1489 1529 +40
- Partials 85 92 +7 ☔ View full report in Codecov by Sentry. |
We are currently running tests on AWS to actually use SA |
pkg/model/aerospike_cluster.go
Outdated
"agent", agent, | ||
"err", err) |
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.
Use slog.Attr
functions to construct arguments.
pkg/dto/secret_agent.go
Outdated
return nil | ||
} | ||
|
||
if s.Address == nil || (s.Address != nil && *s.Address == "") { |
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.
The s.Address != nil
check is redundant here.
No description provided.