8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c2305 commit 735a6f7Copy full SHA for 735a6f7
src/worker/helpers.go
@@ -185,10 +185,11 @@ const (
185
func checkState(olPath string) (OlState, int, error) {
186
dirStat, err := os.Stat(olPath)
187
if os.IsNotExist(err) {
188
+ // If OL Path doesn't exist, Open Lambda is not initialized.
189
return Uninitialized, -1, nil
190
}
191
if !dirStat.IsDir() {
- return Unknown, -1, fmt.Errorf("OL Path is not a directory")
192
+ return Unknown, -1, fmt.Errorf("olPath is not a directory")
193
194
195
// Locate the worker.pid file, use it to get the worker's PID
0 commit comments