Browse Source

Merge pull request #2868 from gravitl/release-v0.23.0

ignore bad gateway, retry later on license validation
Abhishek K 1 year ago
parent
commit
ed355c6bde
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pro/license.go

+ 1 - 1
pro/license.go

@@ -246,7 +246,7 @@ func validateLicenseKey(encryptedData []byte, publicKey *[32]byte) ([]byte, bool
 	slog.Warn(err.Error())
 
 	// try to use cache if we had a temporary error
-	if code == http.StatusServiceUnavailable || code == http.StatusGatewayTimeout {
+	if code == http.StatusServiceUnavailable || code == http.StatusGatewayTimeout || code == http.StatusBadGateway {
 		slog.Warn("Netmaker API may be down, will retry later...", "code", code)
 		return nil, true, nil
 	}