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 f3bdfb4 commit 5d42894Copy full SHA for 5d42894
functions/r2-pump/main.go
@@ -48,6 +48,12 @@ func Invoke(ctx context.Context, e gcp.GCSEvent) error {
48
version := e.Metadata["version"].(string)
49
log.Printf("Invoke %s %s\n", pkgName, version)
50
51
+ // This update is causing timeouts, ignore for now and sync storages later.
52
+ if pkgName == "cldr-json" && version == "srl295/random-v44" {
53
+ log.Printf("update is ignored\n")
54
+ return nil
55
+ }
56
+
57
configStr, err := b64.StdEncoding.DecodeString(e.Metadata["config"].(string))
58
if err != nil {
59
return fmt.Errorf("could not decode config: %v", err)
0 commit comments