Skip to content

Commit

Permalink
redo spelling fixes that have been erased after a failed merge
Browse files Browse the repository at this point in the history
  • Loading branch information
denisri committed Nov 10, 2023
1 parent 99fd53d commit 3b52376
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion capsul/database/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def dispose_engine(self, engine_id):
# Removes association between label and engine_id
self.redis.hdel("capsul:engine", label)
self.redis.hdel(f"capsul:{engine_id}", "label")
# Check if some executions had been submited or are ongoing
# Check if some executions had been submitted or are ongoing
# An empty list modified with Redis Lua scripts may be encoded as empty dict
executions = json.loads(
self.redis.hget(f"capsul:{engine_id}", "executions")
Expand Down
2 changes: 1 addition & 1 deletion capsul/engine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def execution_context(engine_label, engine_config, executable):
# {'spm': {'spm12-standalone': {...}, 'spm8': {...}}
# whereas EXecutionContext expects an execution-side single, filtered
# config: {'spm': {...}}
# Thie filtering is done here in this function, but later after the context
# This filtering is done here in this function, but later after the context
# is built.
# So for now, give it only the dataset and config_modules part, removing
# all modules config.
Expand Down

0 comments on commit 3b52376

Please sign in to comment.