Browse Source

[s3] Skip throwing S3ConnectorUploadError from scheme check method (#4255)

Harsh Gupta 2 months ago
parent
commit
18198542af
1 changed files with 0 additions and 2 deletions
  1. 0 2
      desktop/core/src/desktop/lib/fs/s3/core/upload.py

+ 0 - 2
desktop/core/src/desktop/lib/fs/s3/core/upload.py

@@ -209,6 +209,4 @@ class S3ConnectorUploadHandler(FileUploadHandler):
     if self.destination:
     if self.destination:
       if "://" in self.destination:
       if "://" in self.destination:
         return self.destination.split("://")[0].upper()
         return self.destination.split("://")[0].upper()
-      else:
-        raise S3ConnectorUploadError("Destination does not have a valid scheme")
     return None
     return None