Skip to content

Commit

Permalink
Removed a cache key issue
Browse files Browse the repository at this point in the history
  • Loading branch information
frikky committed Sep 20, 2023
1 parent 355bc9e commit 9dd8736
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app_upload/stitcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -847,8 +847,8 @@ func main() {
bucketName = os.Args[5]
}

appname := "email"
appversion := "1.3.0"
appname := "shuffle-tools"
appversion := "1.2.0"
err := deployConfigToBackend(appfolder, appname, appversion)
if err != nil {
log.Printf("[WARNING] Failed uploading config: %s", err)
Expand Down
2 changes: 1 addition & 1 deletion db-connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ func GetCache(ctx context.Context, name string) (interface{}, error) {
if err == gomemcache.ErrCacheMiss {
//log.Printf("[DEBUG] Cache miss for %s: %s", name, err)
} else if err != nil {
log.Printf("[DEBUG] Failed to find cache for key %s: %s", name, err)
//log.Printf("[DEBUG] Failed to find cache for key %s: %s", name, err)
} else {
//log.Printf("[INFO] Got new cache: %s", item)

Expand Down

0 comments on commit 9dd8736

Please sign in to comment.