stop hardcode timeout in tempest tests
Change-Id: If51e2d5628a32dde7ab1bd2ea809c015c0db8732
diff --git a/ceilometer/tests/tempest/config.py b/ceilometer/tests/tempest/config.py
index 3749b97..4125a7f 100644
--- a/ceilometer/tests/tempest/config.py
+++ b/ceilometer/tests/tempest/config.py
@@ -39,5 +39,12 @@
cfg.BoolOpt('deprecated_api_enabled',
default=True,
help="Runs Ceilometer deprecated API tests"),
-
+ cfg.IntOpt('notification_wait',
+ default=120,
+ help="The seconds to wait for notifications which "
+ "containers and objects sent to swift."),
+ cfg.IntOpt('notification_sleep',
+ default=1,
+ help="The seconds to sleep after an unsuccessful "
+ "notification received."),
]