File tree 1 file changed +8
-2
lines changed
src/main/java/org/gaul/s3proxy
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ final class Quirks {
22
22
/** Blobstores which do not support blob-level access control. */
23
23
static final Set <String > NO_BLOB_ACCESS_CONTROL = Set .of (
24
24
"azureblob" ,
25
+ "azureblob-sdk" ,
25
26
"b2" ,
26
27
"rackspace-cloudfiles-uk" ,
27
28
"rackspace-cloudfiles-us" ,
@@ -65,7 +66,8 @@ final class Quirks {
65
66
);
66
67
67
68
static final Set <String > NO_EXPIRES = Set .of (
68
- "azureblob"
69
+ "azureblob" ,
70
+ "azureblob-sdk"
69
71
);
70
72
71
73
static final Set <String > NO_LIST_MULTIPART_UPLOADS = Set .of (
@@ -81,7 +83,8 @@ final class Quirks {
81
83
/** Blobstores which do not allow listing zero keys. */
82
84
static final Set <String > NO_LIST_ZERO_KEYS = Set .of (
83
85
"atmos" ,
84
- "azureblob"
86
+ "azureblob" ,
87
+ "azureblob-sdk"
85
88
);
86
89
87
90
/**
@@ -91,6 +94,7 @@ final class Quirks {
91
94
*/
92
95
static final Set <String > MULTIPART_REQUIRES_STUB = Set .of (
93
96
"azureblob" ,
97
+ "azureblob-sdk" ,
94
98
"filesystem" ,
95
99
"google-cloud-storage" ,
96
100
"openstack-swift" ,
@@ -100,13 +104,15 @@ final class Quirks {
100
104
/** Blobstores with opaque ETags. */
101
105
static final Set <String > OPAQUE_ETAG = Set .of (
102
106
"azureblob" ,
107
+ "azureblob-sdk" ,
103
108
"b2" ,
104
109
"google-cloud-storage"
105
110
);
106
111
107
112
/** Blobstores with opaque markers. */
108
113
static final Set <String > OPAQUE_MARKERS = Set .of (
109
114
"azureblob" ,
115
+ "azureblob-sdk" ,
110
116
// S3 marker means one past this token while B2 means this token
111
117
"b2" ,
112
118
"google-cloud-storage"
You can’t perform that action at this time.
0 commit comments