X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=blobdiff_plain;f=python%2Fcumulus%2Fstore%2F__init__.py;h=84ca119238b9f6ee0d7e1b87830a51c4caf4211f;hp=f32ff9fe4f47efc1d9693528b675813b56e88a9a;hb=a44f5f73e7b43ff152f8b515a74bb9e0b1b48cc6;hpb=a1face58909c717037fce46b26020c573e9ad993 diff --git a/python/cumulus/store/__init__.py b/python/cumulus/store/__init__.py index f32ff9f..84ca119 100644 --- a/python/cumulus/store/__init__.py +++ b/python/cumulus/store/__init__.py @@ -60,5 +60,12 @@ class Store (object): pass + def close(self): + """Tier down the connection explicitly if needed + + Currently needed for sftp to be able to end the program.""" + + pass + def open(url): return Store(url)