Andrew Bayer
70754d86a9
JCLOUDS-37. Fix RAT violations in incubator-jclouds, 1.5.x branch
2013-05-14 08:30:16 -07:00
Andrew Bayer
91b9dbd9c6
JCLOUDS-30. Switch to 2 space indents for POM files.
2013-05-13 12:19:36 -07:00
Andrew Bayer
0d4eac1dbb
JCLOUDS-16. Switch groupId to org.apache.jclouds, change parent POM, remove old distributionManagement content, add ASF repos.
2013-05-13 12:19:35 -07:00
adriancole
d7fd5b3d59
[maven-release-plugin] prepare for next development iteration
2013-04-10 14:21:50 -07:00
adriancole
1a50d1382c
[maven-release-plugin] prepare release jclouds-1.5.10
2013-04-10 14:21:48 -07:00
Andrew Gaul
172d198454
Parameterize max errors for clear container
...
Also use setter injection for max request time.
2013-04-01 11:00:33 -07:00
Ignasi Barrera
27ee3f263b
[maven-release-plugin] prepare for next development iteration
2013-03-14 23:49:05 +01:00
Ignasi Barrera
ce42efbce8
[maven-release-plugin] prepare release jclouds-1.5.9
2013-03-14 23:49:03 +01:00
Andrew Gaul
d2a6266dae
Guard against possible null HttpResponse
2013-03-10 15:49:22 -07:00
Adrian Cole
e8d6c0643c
[maven-release-plugin] prepare for next development iteration
2013-02-25 20:44:16 -08:00
Adrian Cole
d0577b518f
[maven-release-plugin] prepare release jclouds-1.5.8
2013-02-25 20:44:08 -08:00
Andrew Gaul
378f0a3558
Expose resource creation date
2013-02-20 08:39:58 -08:00
adriancole
72ad7d8199
[maven-release-plugin] prepare for next development iteration
2013-02-04 18:04:48 -08:00
adriancole
0eee0f9842
[maven-release-plugin] prepare release jclouds-1.5.7
2013-02-04 18:04:46 -08:00
adriancole
da7f6e9575
[maven-release-plugin] prepare for next development iteration
2013-02-02 08:30:47 -08:00
adriancole
62dde066e5
[maven-release-plugin] prepare release jclouds-1.5.6
2013-02-02 08:30:45 -08:00
Andrew Gaul
0053c77b9b
Call BlobUtils.clearContainer directly
...
BaseAsyncBlobStore.clearContainer returns a Future which we previously
did not manage correctly, hanging when deleting non-existent
containers. Call BlobUtils.clearContainer directly to address this.
2013-01-24 08:24:41 -08:00
Adrian Cole
dae8e10592
[maven-release-plugin] prepare for next development iteration
2013-01-13 21:19:20 -08:00
Adrian Cole
3e28b726af
[maven-release-plugin] prepare release jclouds-1.5.5
2013-01-13 21:19:16 -08:00
Andrew Gaul
e804c00b8e
Add more logging to DeleteAllKeysInList
...
This allows monitoring of progress of long deletes via debug logs.
2012-12-27 08:20:25 -08:00
Adrian Cole
69a8304617
replaced jersey w/Uris & UriTemplates; removed complexity in url encoding and edge cases like matrix params
2012-12-24 16:11:08 -08:00
Everett Toews
a94909ec2e
Fixed issue where an Accept header is required when doing HEAD requests to Cloud Files.
2012-12-16 20:48:46 -06:00
Adrian Cole
78053601aa
[maven-release-plugin] prepare for next development iteration
2012-12-10 17:43:56 -08:00
Adrian Cole
c33c5a40d8
[maven-release-plugin] prepare release jclouds-1.5.4
2012-12-10 17:43:53 -08:00
Adrian Cole
dc214f4335
[maven-release-plugin] prepare for next development iteration
2012-11-13 19:49:47 -08:00
Adrian Cole
34152311be
[maven-release-plugin] prepare release jclouds-1.5.3
2012-11-13 19:49:46 -08:00
Andrew Gaul
42b61197a6
Honor PROPERTY_REQUEST_TIMEOUT in clearContainer
2012-11-13 18:07:25 -08:00
Andrew Gaul
24b77b00b5
Merge pull request #942 from andrewgaul/clear-container-cancel-futures-1.5.x
...
Cancel Futures in clearContainer
2012-11-13 14:30:14 -08:00
Adrian Cole
5f6c3e992a
improved javadoc including where to look for alternative syntax
2012-11-07 12:44:07 -03:00
Andrew Gaul
acd256f9f1
Cancel Futures in clearContainer
...
This prevents Futures from hanging around on exceptional code paths like
interrupts and timeouts.
2012-11-02 10:10:03 -07:00
Andrew Gaul
d58acbacae
Throw TimeoutException from awaitCompletion
...
This is a common error that callers should interpret correctly. For
DeleteAllKeysInList, we integrate into its retry and backoff logic,
and for other callers, we continue to propagate RuntimeException.
2012-10-30 09:15:00 -07:00
Adrian Cole
aa8ff8e7ef
[maven-release-plugin] prepare for next development iteration
2012-10-11 11:23:44 +02:00
Adrian Cole
5deb0ca54a
[maven-release-plugin] prepare release jclouds-1.5.2
2012-10-11 11:23:43 +02:00
Andrew Gaul
adcde09347
Prefer Files.toString over FileInputStream
2012-10-11 11:06:06 +02:00
Andrew Gaul
5dc495a2bf
Retry each operation up to maxErrors times
...
Previously we only allowed maxErrors per directory, which tended to
fail with large directories. Also rename counter to something more
intuitive.
2012-10-11 11:04:23 +02:00
Adrian Cole
c1e63bb360
corrected guice bindings for swift-based blob signatures and backfilled expect tests
2012-10-10 13:07:10 +02:00
Adrian Cole
269915ce31
[maven-release-plugin] prepare for next development iteration
2012-09-27 11:00:25 -07:00
Adrian Cole
e8fc6ae324
[maven-release-plugin] prepare release jclouds-1.5.1
2012-09-27 11:00:24 -07:00
Adrian Cole
43381f6c4d
Issue 1092: fix hostname when path-based buckets are used in non-default location
2012-09-26 13:15:07 -07:00
Andrew Gaul
a70ba3f986
Avoid Futures.getUnchecked in DeleteAllKeysInList
...
This masks InterruptedException. We should rework the logic in
execute to unwind the stack on errors; currently we only return from
the leaf method.
2012-09-20 11:07:08 -07:00
Adrian Cole
82f28c1800
[maven-release-plugin] prepare for next development iteration
2012-09-17 00:25:49 -07:00
Adrian Cole
93ac6cdf0f
[maven-release-plugin] prepare release jclouds-1.5.0
2012-09-17 00:25:44 -07:00
Adrian Cole
3be0f27b4b
merged latest
2012-09-16 23:53:55 -07:00
Andrei Savu
080d142ae1
Generic support for Swift TempUrl middleware
2012-09-16 21:46:51 +03:00
Andrei Savu
327066acd7
Added @Beta annotations on the new methods in BlobRequestSigner
2012-09-11 23:55:21 +03:00
Andrei Savu
49bde19fa0
Add support for Swift TempURL Middleware
2012-09-10 13:45:55 +03:00
Adrian Cole
76e6f78a67
[maven-release-plugin] prepare for next development iteration
2012-09-09 12:20:04 -07:00
Adrian Cole
0b24a7f0ee
[maven-release-plugin] prepare release jclouds-1.5.0-rc.1
2012-09-09 12:20:00 -07:00
Adrian Cole
fef7bab24e
[maven-release-plugin] prepare for next development iteration
2012-08-22 18:55:45 -07:00
Adrian Cole
80afcf834f
[maven-release-plugin] prepare release jclouds-1.5.0-beta.11
2012-08-22 18:55:40 -07:00