X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_common%2Ffsbase.py;h=219dbe158913ab8982edac82d5ff08845b4eef7f;hb=HEAD;hp=24eb994a4238a52eea846cdb6915206435ec2b40;hpb=b07e4ef6e44bae6044be7420d982406ab0122275;p=osm%2Fcommon.git diff --git a/osm_common/fsbase.py b/osm_common/fsbase.py index 24eb994..a03fb32 100644 --- a/osm_common/fsbase.py +++ b/osm_common/fsbase.py @@ -16,11 +16,13 @@ # limitations under the License. -import logging from http import HTTPStatus -from osm_common.common_utils import FakeLock +import logging from threading import Lock +from osm_common.common_utils import FakeLock + + __author__ = "Alfonso Tierno " @@ -31,7 +33,7 @@ class FsException(Exception): class FsBase(object): - def __init__(self, logger_name='fs', lock=False): + def __init__(self, logger_name="fs", lock=False): """ Constructor of FsBase :param logger_name: logging name @@ -85,3 +87,6 @@ class FsBase(object): def sync(self, from_path=None): raise FsException("Method 'sync' not implemented") + + def reverse_sync(self, from_path): + raise FsException("Method 'reverse_sync' not implemented")