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 41b0ed6 commit 0fbca70Copy full SHA for 0fbca70
main.go
@@ -3,6 +3,7 @@ package main
3
import (
4
"context"
5
"errors"
6
+ "fmt"
7
"io/fs"
8
"log"
9
"net/http"
@@ -207,6 +208,11 @@ func ScanAndProcessDir(ctx context.Context, config LoaderConfig) error {
207
208
209
for r := range results {
210
log.Printf("processed %s", r)
211
+
212
+ // give up on special case of JwtManager issue until we can debug more.
213
+ if strings.Contains(r, "JwtManager instance not properly initialized") {
214
+ return fmt.Errorf("giving up on JwtManager instance not properly initialized error")
215
+ }
216
}
217
218
select {
0 commit comments