diff options
| author | Vishvananda Ishaya <vishvananda@yahoo.com> | 2010-10-18 13:40:03 -0700 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@yahoo.com> | 2010-10-18 13:40:03 -0700 |
| commit | 03a74592ed2dba8d82432fb7eaa76c9dce2351c8 (patch) | |
| tree | b65c5f549d9444851774193b490469f5eb8e45c5 | |
| parent | 3ef13339a003d6799dd303c7764606c76c5fb1ad (diff) | |
| download | nova-03a74592ed2dba8d82432fb7eaa76c9dce2351c8.tar.gz nova-03a74592ed2dba8d82432fb7eaa76c9dce2351c8.tar.xz nova-03a74592ed2dba8d82432fb7eaa76c9dce2351c8.zip | |
it is flags.DEFINE_integer, not FLAGS.define_int
| -rw-r--r-- | nova/compute/disk.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/compute/disk.py b/nova/compute/disk.py index 8d2198b67..447a29004 100644 --- a/nova/compute/disk.py +++ b/nova/compute/disk.py @@ -32,8 +32,8 @@ from nova import flags FLAGS = flags.FLAGS -FLAGS.define_int('minimum_root_size', 1024 * 1024 * 1024 * 10, - 'minimum size in bytes of root partition') +flags.DEFINE_integer('minimum_root_size', 1024 * 1024 * 1024 * 10, + 'minimum size in bytes of root partition') @defer.inlineCallbacks |
