> +import com.google.common.net.HttpHeaders;
> +
> +/**
> + * Reads the time from the blobstore, optionally enforcing a maximum clock
> + * skew. Improperly configured private blobstores can have sufficient skew
> + * to impact operations like signed URLs with timeouts.
> + *
> + * @author Andrew Gaul
> + */
> +@Command(scope = "jclouds", name = "blobstore-time", description = "Reads
> time from the blobstore")
> +public class TimeCommand extends BlobStoreCommandWithOptions {
> +
> + @Argument(index = 0, name = "containerName", description = "The name of
> the container", required = true, multiValued = false)
> + String containerName;
> +
> + @Argument(index = 1, name = "blobName", description = "The name of the
> blob", required = true, multiValued = false)
Also, is it likely to be clear to a user why they need to supply a blob name
for a command that is described as "Reads time from the blobstore"?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-karaf/pull/37/files#r10064016