You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnCache{}, fmt.Errorf("Could not open exclusive.lock: %w", err)
40
+
returnCache{}, fmt.Errorf("Could not open exclusive.lock")
41
41
}
42
42
43
43
_, err=lockfile.WriteString("This is a lockfile that prevents two VM instances from operating on the same directory in parallel.\nSee codebase at github.com/CosmWasm/wasmvm for more information.\nSafety first – brought to you by Confio ❤️\n")
44
44
iferr!=nil {
45
45
lockfile.Close()
46
-
returnCache{}, fmt.Errorf("Error writing to exclusive.lock: %w", err)
46
+
returnCache{}, fmt.Errorf("Error writing to exclusive.lock")
0 commit comments