Skip to content

Commit

Permalink
test: add pippline test case
Browse files Browse the repository at this point in the history
  • Loading branch information
funky-eyes committed Apr 9, 2024
2 parents 02e700a + 55bd678 commit 4f70b62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ignore:
- ".mvn/.*"
- ".style/.*"
- "*.md"
- "*Test"
comment:
layout: "reach,diff,flags,tree"
behavior: default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
*/
package icu.funkye.redispike.handler.process.impl;

import java.util.Objects;

import com.aerospike.client.AerospikeException;
import com.aerospike.client.Key;
import com.aerospike.client.Language;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) {

private RedisRequest<?> convert2RedisRequest(List<String> params) {
String cmd = params.get(0);
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("cmd: {}", params);
if (LOGGER.isInfoEnabled()) {
LOGGER.info("cmd: {}", params);
}
switch (cmd) {
case "hdel":
Expand Down

0 comments on commit 4f70b62

Please sign in to comment.