diff options
| -rw-r--r-- | xlators/features/upcall/src/upcall-internal.c | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/xlators/features/upcall/src/upcall-internal.c b/xlators/features/upcall/src/upcall-internal.c index ba19a7c7a76..187c9eb92be 100644 --- a/xlators/features/upcall/src/upcall-internal.c +++ b/xlators/features/upcall/src/upcall-internal.c @@ -258,6 +258,11 @@ upcall_cleanup_expired_clients (xlator_t *this,                                           up_client->access_time;                          if (t_expired > (2*timeout)) { + +                                gf_log (THIS->name, GF_LOG_TRACE, +                                        "Cleaning up client_entry(%s)", +                                        up_client->client_uid); +                                  ret =                                    __upcall_cleanup_client_entry (up_client); @@ -268,9 +273,6 @@ upcall_cleanup_expired_clients (xlator_t *this,                                                  up_client);                                          goto out;                                  } -                                gf_log (THIS->name, GF_LOG_TRACE, -                                        "Cleaned up client_entry(%s)", -                                        up_client->client_uid);                          }                  }          }  | 
