diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-07-20 17:45:55 +0000 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-07-20 17:45:55 +0000 |
| commit | 775ea7f40d769645520d4ea7c7d9c0bfdb36c2dc (patch) | |
| tree | bc7c4fdac81ddd786f21411e9775e7e281d1caa1 /nova/image | |
| parent | c5cb902d19c890dd20e5120017973ea0172dd428 (diff) | |
default image to private on register
Diffstat (limited to 'nova/image')
| -rw-r--r-- | nova/image/s3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/image/s3.py b/nova/image/s3.py index 4a3df98ba..c313c7a13 100644 --- a/nova/image/s3.py +++ b/nova/image/s3.py @@ -168,7 +168,7 @@ class S3ImageService(service.BaseImageService): metadata.update({'disk_format': image_format, 'container_format': image_format, 'status': 'queued', - 'is_public': True, + 'is_public': False, 'properties': properties}) metadata['properties']['image_state'] = 'pending' image = self.service.create(context, metadata) |
