Skip to content

Commit

Permalink
V1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Telunsu committed Oct 31, 2017
1 parent 21d0487 commit bb817eb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,8 @@ Licensed under the GNU GPL version 2
# pkg-config --modversion fuse
2.8.4 //看到版本表示安装成功
```

* 为什么cosfs在正常使用过程中,突然退出了,重新挂载显示"unable to access MOUNTPOINT /path/to/mountpoint: Transport endpoint is not connected"

如果cosfs不是被强制Kill掉,那么检查机器上的fuse版本是否低于2.9.4,libfuse在低于2.9.4版本的情况下可能会导致cosfs异常退出。
建议更新fuse版本,或下载cosfs V1.0.2及以上版本。下载地址: https://github.com/tencentyun/cosfs/releases
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT(cosfs, 1.0.0)
AC_INIT(cosfs, 1.0.2)
AC_CONFIG_HEADER([config.h])

AC_CANONICAL_SYSTEM
Expand Down
2 changes: 1 addition & 1 deletion src/curl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ mimes_t S3fsCurl::mimeTypes;
int S3fsCurl::max_parallel_cnt = 10; // default
off_t S3fsCurl::multipart_size = MULTIPART_SIZE; // default
bool S3fsCurl::is_sigv4 = true; // default
const string S3fsCurl::skUserAgent = "tencentyun-cosfs-v5" + string(VERSION);
const string S3fsCurl::skUserAgent = "tencentyun-cosfs-v5-" + string(VERSION);

//-------------------------------------------------------------------
// Class methods for S3fsCurl
Expand Down

0 comments on commit bb817eb

Please sign in to comment.