parent
bc52a5d6e1
commit
e2610befe3
2
HISTORY
2
HISTORY
|
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
Version 6.9.2 2022-11-28
|
Version 6.9.2 2022-11-28
|
||||||
* space size such as total_mb and free_mb use int64_t instead of int
|
* space size such as total_mb and free_mb use int64_t instead of int
|
||||||
|
* bugfixed: log connection ip_addr and port correctly
|
||||||
|
* output port with format %u instead %d
|
||||||
|
|
||||||
Version 6.9.1 2022-11-25
|
Version 6.9.1 2022-11-25
|
||||||
* bugfixed: clear task extra data correctly when the connection broken
|
* bugfixed: clear task extra data correctly when the connection broken
|
||||||
|
|
|
||||||
2
INSTALL
2
INSTALL
|
|
@ -30,7 +30,7 @@ Chinese language: http://www.fastken.com/
|
||||||
# command lines as:
|
# command lines as:
|
||||||
|
|
||||||
git clone https://github.com/happyfish100/fastdfs.git
|
git clone https://github.com/happyfish100/fastdfs.git
|
||||||
cd fastdfs; git checkout V6.9.1
|
cd fastdfs; git checkout V6.9.2
|
||||||
./make.sh clean && ./make.sh && ./make.sh install
|
./make.sh clean && ./make.sh && ./make.sh install
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
#include "fastcommon/logger.h"
|
#include "fastcommon/logger.h"
|
||||||
#include "fdfs_global.h"
|
#include "fdfs_global.h"
|
||||||
|
|
||||||
Version g_fdfs_version = {6, 9, 1};
|
Version g_fdfs_version = {6, 9, 2};
|
||||||
bool g_use_connection_pool = false;
|
bool g_use_connection_pool = false;
|
||||||
ConnectionPool g_connection_pool;
|
ConnectionPool g_connection_pool;
|
||||||
int g_connection_pool_max_idle_time = 3600;
|
int g_connection_pool_max_idle_time = 3600;
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
%define CommitVersion %(echo $COMMIT_VERSION)
|
%define CommitVersion %(echo $COMMIT_VERSION)
|
||||||
|
|
||||||
Name: %{FastDFS}
|
Name: %{FastDFS}
|
||||||
Version: 6.9.1
|
Version: 6.9.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: FastDFS server and client
|
Summary: FastDFS server and client
|
||||||
License: GPL
|
License: GPL
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue