Skip to content

Commit 74b00a1

Browse files
committed
publish v0.5.29
Signed-off-by: Mayank Sachan <[email protected]>
1 parent b7b6d0d commit 74b00a1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
env:
1919
IS_LATEST_RELEASE: 'false'
20-
APP_VERSION: 0.5.28
20+
APP_VERSION: 0.5.29
2121

2222
steps:
2323
- name: Checkout Code
@@ -63,8 +63,8 @@ jobs:
6363
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.deb.tar.gz.sha256
6464
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.rpm.tar.gz
6565
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.rpm.tar.gz.sha256
66-
tag_name: v0.5.28
67-
name: v0.5.28
66+
tag_name: v0.5.29
67+
name: v0.5.29
6868
body: Fix rclone timeout issue
6969
prerelease: ${{ env.IS_LATEST_RELEASE != 'true' }}
7070

cos-csi-mounter/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := cos-csi-mounter
2-
APP_VERSION := 0.5.28
2+
APP_VERSION := 0.5.29
33
BUILD_DIR := $(NAME)-$(APP_VERSION)
44
BIN_DIR := bin
55

cos-csi-mounter/server/rclone.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ type RCloneArgs struct {
2020
DirectIO string `json:"direct-io,omitempty"`
2121
GID string `json:"gid,omitempty"`
2222
LogFile string `json:"log-file,omitempty"`
23+
LogLevel string `json:"log-level,omitempty"`
2324
NoModificationTime string `json:"no-modtime,omitempty"`
2425
PollInterval string `json:"poll-interval,omitempty"`
2526
ReadOnly string `json:"read-only,omitempty"`
@@ -57,9 +58,7 @@ func (args RCloneArgs) PopulateArgsSlice(bucket, targetPath string) ([]string, e
5758
}
5859

5960
// Delete log-file option from map
60-
if _, ok := m["log-file"]; ok {
61-
delete(m, "log-file")
62-
}
61+
delete(m, "log-file")
6362

6463
// Convert to key=value slice
6564
result := []string{"mount", bucket, targetPath}

pkg/mounter/mounter-rclone.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ func (rclone *RcloneMounter) formulateMountOptions(bucket, target, configPathWit
330330
"daemon": "true",
331331
"config": configPathWithVolID + "/" + configFileName,
332332
"log-file": "/var/log/rclone.log",
333+
"log-level": "DEBUG",
333334
"vfs-cache-mode": "writes",
334335
}
335336

0 commit comments

Comments
 (0)