Skip to content

Commit

Permalink
fix metrics (#598)
Browse files Browse the repository at this point in the history
  • Loading branch information
aphralG authored Mar 25, 2024
1 parent b6177d6 commit 3e0b843
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/os.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func EnableWritePermissionForSocket(path string) error {
case <-timeout:
return lastError
default:
lastError = os.Chmod(path, 0o600)
lastError = os.Chmod(path, 0o660)
if lastError == nil {
return nil
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3e0b843

Please sign in to comment.