Skip to content

Commit 1f90429

Browse files
committed
move hsds plugins to h5pyd
1 parent 924ee00 commit 1f90429

File tree

7 files changed

+1
-2198
lines changed

7 files changed

+1
-2198
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ packages = [
5353
"h5json",
5454
"h5json.jsonstore",
5555
"h5json.h5pystore",
56-
"h5json.hsdsstore",
5756
"h5json.schema",
5857
"h5json.apps",
5958
]

src/h5json/hdf5db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,11 @@ def _checkWriter(self):
277277

278278
def getObjectById(self, obj_id, refresh=False):
279279
""" return object with given id """
280-
self.log.debug(f"getObjectById {obj_id}")
281280
self._checkReader()
282281
tag = getHashTagForId(obj_id)
283282
if tag not in self.db or refresh:
284283
# load the obj from the reader
284+
self.log.debug(f"getObjectById - fetching {obj_id} from reader")
285285
obj_json = self.reader.getObjectById(obj_id)
286286
self.db[tag] = obj_json
287287
obj_json = self.db[tag]

src/h5json/hsdsstore/hsds_reader.py

Lines changed: 0 additions & 322 deletions
This file was deleted.

0 commit comments

Comments
 (0)