Skip to content

Commit 3e0b843

Browse files
authored
fix metrics (#598)
1 parent b6177d6 commit 3e0b843

File tree

3 files changed

+3
-3
lines changed
  • src/core
  • test
    • integration/vendor/github.com/nginx/agent/v2/src/core
    • performance/vendor/github.com/nginx/agent/v2/src/core

3 files changed

+3
-3
lines changed

src/core/os.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func EnableWritePermissionForSocket(path string) error {
5050
case <-timeout:
5151
return lastError
5252
default:
53-
lastError = os.Chmod(path, 0o600)
53+
lastError = os.Chmod(path, 0o660)
5454
if lastError == nil {
5555
return nil
5656
}

test/integration/vendor/github.com/nginx/agent/v2/src/core/os.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/performance/vendor/github.com/nginx/agent/v2/src/core/os.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)