Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling #634

Merged
merged 3 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -36,7 +36,7 @@ The following metrics are currently supported:

For more information about the supported metrics, see `VolumeUsage` within the [Container Storage Interface (CSI) spec documentation for `NodeGetVolumeStats`](https://github.com/container-storage-interface/spec/blob/v1.5.0/spec.md#nodegetvolumestats).

For more information about using metrics in Kubenertes, see [Metrics in Kubernetes](https://kubernetes.io/docs/concepts/cluster-administration/system-metrics/#metrics-in-kubernetes) in the Kubernetes documentation.
For more information about using metrics in Kubernetes, see [Metrics in Kubernetes](https://kubernetes.io/docs/concepts/cluster-administration/system-metrics/#metrics-in-kubernetes) in the Kubernetes documentation.

## Additional supported orchestration platforms for deployment

Expand Down
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