forked from DataDog/dd-apm-test-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set 777 file permissions on UDS socket
The permissions of the socket created by aiohttp aren't as permissive as the ones set by the real agent. (see aio-libs/aiohttp#4155) from @devinsba: test agent: ``` cnb@my-app:/var/run/datadog$ ls -la total 4 drwxr-xr-x 2 root root 60 Aug 1 21:24 . drwxr-xr-x 1 root root 4096 Aug 1 21:24 .. srwxr-xr-x 1 root root 0 Aug 1 21:24 apm.socket ``` real agent: ``` cnb@my-app:/var/run/datadog$ ls -la total 4 drwxr-xr-x 2 root root 80 Aug 1 21:30 . drwxr-xr-x 1 root root 4096 Aug 1 21:31 .. srwx-w--w- 1 root root 0 Aug 1 21:30 apm.socket ```
- Loading branch information
1 parent
29b2f2d
commit 9684f3d
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
fixes: | ||
- | | ||
Use 777 permissions for UDS socket. |