openvstorage / integrationtests

Open vStorage automated integration tests.
Other
0 stars 1 forks source link

ar_0002_arakoon_cluster_validation_test fails on develop #552

Closed pploegaert closed 7 years ago

pploegaert commented 7 years ago

Branch: develop Env: 10.100.199.19x Testrun: http://testrail.openvstorage.com/index.php?/plans/view/38028

Stacktrace:

In [1]: from ovs_extensions.generic.configuration import Configuration

In [2]: Configuration.get('/ovs/arakoon/ovsdb/config', raw=True)
---------------------------------------------------------------------------
NotImplementedError                       Traceback (most recent call last)
<ipython-input-2-1ae2a165e934> in <module>()
----> 1 Configuration.get('/ovs/arakoon/ovsdb/config', raw=True)

/usr/lib/python2.7/dist-packages/ovs_extensions/generic/configuration.pyc in get(cls, key, raw, **kwargs)
    103         try:
    104             key_entries = key.split('|')
--> 105             data = cls._get(key_entries[0], raw, **kwargs)
    106             if len(key_entries) == 1:
    107                 return data

/usr/lib/python2.7/dist-packages/ovs_extensions/generic/configuration.pyc in _get(cls, key, raw, **kwargs)
    294             data = cls._passthrough(method='get',
    295                                     key=key,
--> 296                                     **kwargs)
    297         if raw is True:
    298             return data

/usr/lib/python2.7/dist-packages/ovs_extensions/generic/configuration.pyc in _passthrough(cls, method, *args, **kwargs)
    322     @classmethod
    323     def _passthrough(cls, method, *args, **kwargs):
--> 324         store, params = cls.get_store_info()
    325         if store == 'arakoon':
    326             from ovs_extensions.db.arakoon.pyrakoon.pyrakoon.compat import ArakoonNotFound

/usr/lib/python2.7/dist-packages/ovs_extensions/generic/configuration.pyc in get_store_info(cls)
    340         :rtype: tuple(str, dict)
    341         """
--> 342         raise NotImplementedError()

NotImplementedError: 
pploegaert commented 7 years ago

Fixed in: https://github.com/openvstorage/integrationtests/commit/084740b355363a6ee26f692ecc1de48137b66af2

pploegaert commented 7 years ago

https://github.com/openvstorage/integrationtests/pull/554