> +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)
I
[think](http://grepcode.com/file/repo1.maven.org/maven2/org.apache.karaf.shell/org.apache.karaf.shell.console/2.2.2/org/apache/felix/gogo/commands/Argument.java#Argument.multiValued%28%29)
`multiValued` here and above defaults to `false`, so no need to specify it?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-karaf/pull/37/files#r10063986