-
Notifications
You must be signed in to change notification settings - Fork 29
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
FMWK-497 Replace usages of Info.request() with client.info() #760
Conversation
…st() with client.info()
src/main/java/org/springframework/data/aerospike/util/InfoCommandUtils.java
Outdated
Show resolved
Hide resolved
src/main/java/org/springframework/data/aerospike/util/InfoCommandUtils.java
Show resolved
Hide resolved
src/main/java/org/springframework/data/aerospike/query/cache/IndexRefresher.java
Outdated
Show resolved
Hide resolved
import java.util.concurrent.CompletionException; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
@Slf4j |
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.
We have @Slf4j
but no logs here, might be useful to add log.debug
/log.trace
to log info requests
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 annotation was left after debugging, we already have logging before running info commands (index exists, refresh indexes etc.). Removing this annotation
No description provided.