Bug 764007 (GLUSTER-2275)

Summary: wrong parameter in gf_log(): frame_timeout->ping_timeout
Product: [Community] GlusterFS Reporter: hz02ruc
Component: loggingAssignee: Raghavendra G <raghavendra>
Status: CLOSED DUPLICATE QA Contact:
Severity: low Docs Contact:
Priority: low    
Version: 3.1.1CC: 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:
Embargoed:

Description kaushik 2011-01-06 06:51:16 UTC

*** This bug has been marked as a duplicate of bug 2119 ***

Comment 1 hz02ruc 2011-01-06 08:44:07 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);