> @@ -51,7 +51,17 @@ public void endElement(String uri, String name, String 
> qName) {
>        if (qName.equals("ETag")) {
>           this.currentETag = currentOrNull(currentText);
>        } else if (qName.equals("LastModified")) {
> -         this.currentLastModified = 
> dateParser.iso8601DateParse(currentOrNull(currentText));
> +         try {
> +            this.currentLastModified = dateParser
> +                  .iso8601DateParse(currentOrNull(currentText));
> +         } catch (IllegalArgumentException orig) {
> +            try {
> +               this.currentLastModified = dateParser
> +                     .iso8601SecondsDateParse(currentOrNull(currentText));

@andrewgaul Unfortunately, yes. Both the timestamps @shrinandj pointed out were 
generated as a part of the same list container operation. I would send wire 
logs but @shrinandj tells me that jclouds evidently barfs with the 
IllegalArgumentException before we get to that stage.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/456/files#r15431559

Reply via email to