> @@ -106,14 +106,13 @@ public void testCDNOperations() throws Exception {
> cdnMetadata = getApi().getCDNMetadata(containerNameWithCDN);
> final boolean cdnEnabled = cdnMetadata.isCDNEnabled();
> final boolean logRetention = cdnMetadata.isLogRetention();
> - final long initialTTL = cdnMetadata.getTTL();
> + final int initialTTL = cdnMetadata.getTTL();
An int should be fine for TTL values since the max TTL value is 31536000.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/309/files#r10484484