Skip to content

Commit 88d7494

Browse files
committed
Minor app load fxies
1 parent 4d4eb7d commit 88d7494

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app_upload/stitcher.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ func main() {
846846
}
847847

848848
appname := "shuffle-tools"
849-
appversion := "1.2.1"
849+
appversion := "1.2.0"
850850
err := deployConfigToBackend(appfolder, appname, appversion)
851851
if err != nil {
852852
log.Printf("[WARNING] Failed uploading config: %s", err)

db-connector.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6790,7 +6790,9 @@ func GetUserApps(ctx context.Context, userId string) ([]WorkflowApp, error) {
67906790
if strings.Contains("no matching index found", fmt.Sprintf("%s", err)) {
67916791
log.Printf("[ERROR] No more apps for %s in user app load? Breaking: %s.", userId, err)
67926792
} else {
6793-
log.Printf("[WARNING] No more apps for %s in user app load? Breaking: %s.", userId, err)
6793+
if !strings.Contains(fmt.Sprintf("%s", err), "no more items") {
6794+
log.Printf("[WARNING] Error in app loading: %s", err)
6795+
}
67946796
}
67956797

67966798
break

0 commit comments

Comments
 (0)