gaul requested changes on this pull request.
> @@ -89,6 +91,15 @@ protected void checkUserMetadata(Map<String, String>
> userMetadata1, Map<String,
}
}
+ /* Java on OS X does not support extended attributes, which the filesystem
backend
+ * uses to implement storage tiers */
+ @Override
+ protected void testPutBlobTierHelper(Tier tier, PutOptions options) throws
Exception {
+ if (!isMacOSX()) {
Instead could you flag this as skipped via:
```java
if (isMacOSX()) {
throw new SkipException("Extended attributes not supported on Mac OS X");
}
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1150#pullrequestreview-71327087