Skip to content

Commit

Permalink
squash w/ startup/shutdown. Remove TODOs.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Nov 9, 2024
1 parent bb2835c commit f99b892
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions scripts/irods/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ def _icommands_test_directory():
_icommands_test_directory_cache = _irods_directory() / 'clients' / 'icommands' / 'test'
return _icommands_test_directory_cache

# TODO Nothing appears to use this or the functions which this is built upon.
def icommands_test_directory():
return str(_icommands_test_directory())

Expand All @@ -361,7 +360,6 @@ def _server_test_directory():
_server_test_directory_cache = _irods_directory() / 'test' / 'bin'
return _server_test_directory_cache

# TODO Nothing appears to use this or the functions which this is built upon.
def server_test_directory():
return str(_server_test_directory())

Expand Down Expand Up @@ -437,16 +435,13 @@ def _agent_executable():
def agent_executable():
return str(_agent_executable())

# TODO Rename to _delay_server_executable_cache
_rule_engine_executable_cache = None
# TODO Rename to _delay_server_executable
def _rule_engine_executable():
global _rule_engine_executable_cache
if _rule_engine_executable_cache is None:
_rule_engine_executable_cache = _server_bin_directory() / 'irodsDelayServer'
return _rule_engine_executable_cache

# TODO Rename to delay_server_executable
def rule_engine_executable():
return str(_rule_engine_executable())

Expand Down

0 comments on commit f99b892

Please sign in to comment.