master > master: code go - logic flaw behoben (Ursache war handling von errors im main.go)

This commit is contained in:
RD
2021-11-03 19:29:06 +01:00
parent 47414d6d60
commit be9ce8bb82
5 changed files with 67 additions and 15 deletions

View File

@@ -7,6 +7,7 @@ package poison
import (
"fmt"
"ads/internal/core/logging"
"ads/internal/core/metrics"
"ads/internal/core/utils"
"ads/internal/setup"
@@ -65,6 +66,7 @@ func FancyFindPoison(input_L []int) (int, error) {
// Prechecks:
if setup.AppConfigPerformChecks() {
logging.LogDebug("hier1a")
err = preChecks(input_L)
if err != nil {
break