Merge pull request #193 from matter-labs/secure-eventfd

fix(container-vault-sgx-azure): remove insecure eventfd setting
This commit is contained in:
Harald Hoyer 2024-08-29 11:22:50 +02:00 committed by GitHub
commit 27f35a7432
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,11 +84,6 @@ nixsgxLib.mkSGXContainer {
sys.stack.size = "16M";
# vault needs flock
sys.experimental__enable_flock = true;
# recent golang switched to eventfd for netpoll
# https://github.com/golang/go/commit/d068c2cb620c1daeedc8b9cce488af45a6c2c889
# enable it to mitigate surprises for golang >= 1.23
sys.insecure__allow_eventfd = true;
};
}