[GET] /server

This commit is contained in:
2023-12-01 11:24:22 +01:00
parent 1f4a477077
commit b958ff7ca2
7 changed files with 274 additions and 72 deletions

View File

@@ -136,9 +136,6 @@ func (j *JobRunner[TData]) execute() (err error) {
changes, err := langext.RunPanicSafeR2(func() (int, error) { return j.jobFunc(runCtx, j.app, lstr, j.data) })
finCtx, cancelFinCtx := context.WithTimeout(context.Background(), time.Minute)
defer cancelFinCtx()
//goland:noinspection GoTypeAssertionOnErrors
if panicerr, ok := err.(langext.PanicWrappedErr); ok {