mirror of
https://github.com/EnumeratedDev/enit.git
synced 2026-09-16 10:36:12 +00:00
Fix esvm looking for stage 0 enabled services
This commit is contained in:
+1
-1
@@ -211,7 +211,7 @@ func Init() {
|
||||
// Start enabled services
|
||||
stages := slices.Collect(maps.Keys(EnabledServices))
|
||||
slices.Sort(stages)
|
||||
for stage := 0; stage <= stages[len(stages)-1]; stage++ {
|
||||
for stage := 1; stage <= stages[len(stages)-1]; stage++ {
|
||||
logger.Printf("Starting stage %d services...", stage)
|
||||
|
||||
services := EnabledServices[stage]
|
||||
|
||||
Reference in New Issue
Block a user