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 be29d7a commit 1763d5dCopy full SHA for 1763d5d
internals/server/http.go
@@ -70,7 +70,7 @@ func wakeHandler(w http.ResponseWriter, req *http.Request) {
70
sendToClient(client, map[string]any{
71
"success": false,
72
"error": true,
73
- "message": "Could not start containers",
+ "message": err.Error(),
74
})
75
76
closeClient(client)
internals/wol/wol.go
@@ -78,6 +78,7 @@ func WakeContainers(query string) error {
78
logger.Dev("Waking container with ", query)
79
80
containerQueryMutex.RLock()
81
+ logger.Dev("Queries: ", containerQueries)
82
containers, exists := containerQueries[query]
83
containerQueryMutex.RUnlock()
84
0 commit comments