()
| 894 | } |
| 895 | |
| 896 | func getFailEntryPoint() (uint, bool) { |
| 897 | valueString := os.Getenv("TOOLBX_FAIL_ENTRY_POINT") |
| 898 | if valueString == "" { |
| 899 | return 0, false |
| 900 | } |
| 901 | |
| 902 | if valueN, err := strconv.Atoi(valueString); valueN > 0 && err == nil { |
| 903 | return uint(valueN), true |
| 904 | } |
| 905 | |
| 906 | return 0, false |
| 907 | } |
| 908 | |
| 909 | func handleDailyTick(event time.Time) { |
| 910 | eventString := event.String() |
no outgoing calls
no test coverage detected
searching dependent graphs…