Skip to content

Commit

Permalink
Fix spelling (#634)
Browse files Browse the repository at this point in the history
Signed-off-by: John Bampton <[email protected]>
Co-authored-by: Ariel Kass <[email protected]>
  • Loading branch information
jbampton and kasserater authored May 6, 2024
1 parent d0ff94f commit 1168c2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion controllers/array_action/array_connection_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __enter__(self):

def __exit__(self, type, value, traceback):
logger.debug("closing the connection")
with connection_lock_dict[self.endpoint_key]: # TODO: when moving to python 3 add tiemout!
with connection_lock_dict[self.endpoint_key]: # TODO: when moving to python 3 add timeout!
if self.connected:
self.med_class.disconnect()
logger.debug("reducing the connection count")
Expand Down
2 changes: 1 addition & 1 deletion docs/content/release_notes/whats_new.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ This version adds support for orchestration platforms Kubernetes 1.28 and Red Ha

## Miscellaneous resolved issues

For information about the resolved issues in version 1.11.2, see [1.11.2 (May 2024)](changelog_1.11.2.md).
For information about the resolved issues in version 1.11.2, see [1.11.2 (May 2024)](changelog_1.11.2.md).
2 changes: 1 addition & 1 deletion node/goid_info/goid_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

// We can map goid to a string which will appear in log entry with this goid. In most places it will be volume id.
// Use "SetAdditionalIDInfo(<info>)" at the begining of API method to specify additional info for current goid.
// Use "SetAdditionalIDInfo(<info>)" at the beginning of API method to specify additional info for current goid.
// Directly after use "defer DeleteAdditionalIDInfo()" to remove the info so additionalIDInfoByGoID will not grow endlessly.

package goid_info
Expand Down

0 comments on commit 1168c2a

Please sign in to comment.