diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 27f0e0baf..ad9102fcd 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -488,6 +488,7 @@ services: environment: - TZ=Asia/Shanghai - DOCKER_TESTING_LOG_OFF="on" + - DOCKER_FLASHNODE_TMPFS_OFF="on" - http_proxy= - https_proxy= - HTTP_PROXY= diff --git a/sdk/meta/api.go b/sdk/meta/api.go index b56d7659d..5a7a1929b 100644 --- a/sdk/meta/api.go +++ b/sdk/meta/api.go @@ -2267,7 +2267,8 @@ type DentryForAccessInfo struct { } func (mw *MetaWrapper) getDentrysWithDepthLimit(parentIno uint64, parentPath string, dentryCh chan<- DentryForAccessInfo, errCh chan<- error, wg *sync.WaitGroup, - currentGoroutineNum *int32, newGoroutine bool, goroutineNum int32, currentDepth *int32, maxDepth int32) { + currentGoroutineNum *int32, newGoroutine bool, goroutineNum int32, currentDepth *int32, maxDepth int32, +) { defer func() { if newGoroutine { atomic.AddInt32(currentGoroutineNum, -1)