> + int MAX_OBJECTS = 10000; > + > + /** > + * The maximum length of a container name is 256 (bytes). > + */ > + int MAX_LENGTH_CONTAINER_NAME = 256; > + > + /** > + * The maximum length of an object name is 1024 (bytes). > + */ > + int MAX_LENGTH_OBJECT_NAME = 1024; > + > + /** > + * The maximum length of HTTP requests is 5 (gigabytes). > + */ > + int MAX_LENGTH_HTTP_REQUEST = 5;
Should this be 5L * 1024 * 1024 * 1024? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r6380909
