| Summary: | wrong parameter in gf_log(): frame_timeout->ping_timeout | ||
|---|---|---|---|
| Product: | [Community] GlusterFS | Reporter: | hz02ruc |
| Component: | logging | Assignee: | Raghavendra G <raghavendra> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | 3.1.1 | CC: | gluster-bugs, kbudiger |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Other | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | Type: | --- | |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
kaushik
2011-01-06 06:51:16 UTC
line 1827 ~ 1830 of client.c,
if (ping_timeout > 1013) {
gf_log (this->name, GF_LOG_WARNING, "Reconfiguration"
"'option frame-timeout %d failed , Max value"
"can be 1013,", frame_timeout);
should be
if (ping_timeout > 1013) {
gf_log (this->name, GF_LOG_WARNING, "Reconfiguration"
"'option ping-timeout %d failed , Max value"
"can be 1013,", ping_timeout);
|