Bug 764007 (GLUSTER-2275) - wrong parameter in gf_log(): frame_timeout->ping_timeout
Summary: wrong parameter in gf_log(): frame_timeout->ping_timeout
Keywords:
Status: CLOSED DUPLICATE of bug 763851
Alias: GLUSTER-2275
Product: GlusterFS
Classification: Community
Component: logging
Version: 3.1.1
Hardware: All
OS: Other
low
low
Target Milestone: ---
Assignee: Raghavendra G
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2011-01-06 08:44 UTC by hz02ruc
Modified: 2011-01-06 09:51 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed:
Regression: ---
Mount Type: ---
Documentation: ---
CRM:
Verified Versions:


Attachments (Terms of Use)

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);


Note You need to log in before you can comment on or make changes to this bug.