Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
add epoll_pwait to secomp profile
Browse files Browse the repository at this point in the history
Last year golang changed from epoll_wait to epoll_pwait golang/go#23750

This causes golang panic errors on mac when running secomp secure compiles using docker 18.09.1. It may start to become a problem on linux where we are running on 17.03.2-ce in production.
  • Loading branch information
Henry Oswald committed Jan 24, 2019
1 parent ddaa944 commit 12fee9e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions seccomp/clsi-profile.json
Expand Up @@ -827,6 +827,10 @@
"name": "gettimeofday",
"action": "SCMP_ACT_ALLOW",
"args": []
}, {
"name": "epoll_pwait",
"action": "SCMP_ACT_ALLOW",
"args": []
}
]
}

0 comments on commit 12fee9e

Please sign in to comment.