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

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.