tracker_mem.c log more info
parent
f19daf51ee
commit
30c7949bf8
3
HISTORY
3
HISTORY
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
Version 5.05 2014-11-21
|
||||
* tracker_mem.c log more info
|
||||
|
||||
Version 5.04 2014-09-16
|
||||
* add fastdfs.spec for build RPM on Linux
|
||||
* depend on libfastcommon
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
int g_fdfs_connect_timeout = DEFAULT_CONNECT_TIMEOUT;
|
||||
int g_fdfs_network_timeout = DEFAULT_NETWORK_TIMEOUT;
|
||||
char g_fdfs_base_path[MAX_PATH_SIZE] = {'/', 't', 'm', 'p', '\0'};
|
||||
Version g_fdfs_version = {5, 4};
|
||||
Version g_fdfs_version = {5, 5};
|
||||
bool g_use_connection_pool = false;
|
||||
ConnectionPool g_connection_pool;
|
||||
int g_connection_pool_max_idle_time = 3600;
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
%define FDFSServer fastdfs-server
|
||||
%define FDFSClient libfdfsclient
|
||||
%define FDFSTool fastdfs-tool
|
||||
%define FDFSVersion 5.0.4
|
||||
%define FDFSVersion 5.0.5
|
||||
|
||||
Name: %{FastDFS}
|
||||
Version: %{FDFSVersion}
|
||||
|
|
|
|||
|
|
@ -4272,6 +4272,9 @@ int tracker_mem_add_group_and_storage(TrackerClientInfo *pClientInfo, \
|
|||
if (result != 0)
|
||||
{
|
||||
tracker_mem_file_unlock();
|
||||
logError("file: "__FILE__", line: %d, "
|
||||
"get sys files from other trackers fail, errno: %d",
|
||||
__LINE__, result);
|
||||
return EAGAIN;
|
||||
}
|
||||
|
||||
|
|
@ -4289,6 +4292,9 @@ int tracker_mem_add_group_and_storage(TrackerClientInfo *pClientInfo, \
|
|||
pJoinBody, NULL)) != 0)
|
||||
{
|
||||
tracker_mem_file_unlock();
|
||||
logError("file: "__FILE__", line: %d, "
|
||||
"get sys files from other trackers fail, errno: %d",
|
||||
__LINE__, result);
|
||||
return EAGAIN;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue