Skip to content

Commit

Permalink
Add some TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Dec 3, 2024
1 parent 7197f6d commit d3bc291
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions conda-store-server/conda_store_server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,7 @@ def plugin_manager(self):

def lock_plugin(self) -> tuple[str, lock.LockPlugin]:
"""Returns the configured lock plugin"""
# TODO: get configured lock plugin name from settings
lock_plugin = self.plugin_manager.get_lock_plugin(name=self.lock_backend)
locker = lock_plugin.backend()
return lock_plugin.name, locker
Expand Down
2 changes: 1 addition & 1 deletion conda-store-server/conda_store_server/plugins/hookspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from conda_store_server.plugins.types.lock import LockPlugin

spec_name = "conda-store-server"
spec_name = "conda-store"
hookspec = pluggy.HookspecMarker(spec_name)
hookimpl = pluggy.HookimplMarker(spec_name)

Expand Down

0 comments on commit d3bc291

Please sign in to comment.