Skip to content

Commit

Permalink
Merge commit 'ce46ec03db5253067f19ca7dfbf80970e306369c' into IAFEnvoy…
Browse files Browse the repository at this point in the history
…-master
  • Loading branch information
zyxkad committed Jan 25, 2024
2 parents c209ea6 + ce46ec0 commit e412939
Show file tree
Hide file tree
Showing 12 changed files with 802 additions and 224 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/cache
/data
/logs
/error.log
/.tmp
/__hijack
/oss_mirror
Expand Down
6 changes: 4 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,12 @@ cluster_id: ${CLUSTER_ID}
cluster_secret: ${CLUSTER_SECRET}
# 文件同步间隔 (分钟)
sync_interval: 10
# 同步文件时最多打开的连接数量
download_max_conn: 64
# 连接超时限制(秒),网不好就调高点
connect_timeout: 10
# 同步文件时最多打开的连接数量
download_max_conn: 64
# 是否启用 gzip 压缩
use_gzip: false
# 服务器上行限制
serve_limit:
# 是否启用上行限制
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ outputdir=output

mkdir -p "$outputdir"

[ -n "$TAG" ] || TAG=$(git describe --tags --match v[0-9]* --abbrev=0 2>/dev/null || git log -1 --format="dev-%H")
[ -n "$TAG" ] || TAG=$(git describe --tags --match v[0-9]* --abbrev=0 --candidates=0 2>/dev/null || git log -1 --format="dev-%H")

echo "Detected tag: $TAG"

Expand Down
Loading

0 comments on commit e412939

Please sign in to comment.