Merge pull request #5946 from dcantah/clarify-var

Runtime: Clarify mutability of global var
This commit is contained in:
Bin Liu 2023-01-05 13:08:45 +08:00 committed by GitHub
commit 4ab9364aa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,7 @@ import (
"github.com/sirupsen/logrus"
)
// Mutable and not constant so we can mock in tests
var urandomDev = "/dev/urandom"
// VM is abstraction of a virtual machine.