-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add codis2pika to pika #1510 #1514
Conversation
/* Parse the master entry */ | ||
count := nextInteger(&inx, elements) // count | ||
deleted := nextInteger(&inx, elements) // deleted | ||
numFields := int(nextInteger(&inx, elements)) // num-fields |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types
args = append(args, fields[j], nextString(&inx, elements)) | ||
} | ||
} else { // get field by lp.Next() | ||
num := int(nextInteger(&inx, elements)) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types
//原Timeout为3s,为降低broken pipe概率调整为8s | ||
dialer.Timeout = 8 * time.Second | ||
if isTls { | ||
conn, err = tls.DialWithDialer(&dialer, "tcp", address, &tls.Config{InsecureSkipVerify: true}) |
Check failure
Code scanning / CodeQL
Disabled TLS certificate check
* add codis2pika to pika;update go path * update pika.yml
* add codis2pika to pika;update go path * update pika.yml
Add codis2pika to pika
fix #1510