Skip to content

Commit f310fcf

Browse files
authored
Merge pull request #1389 from rackerlabs/netapp-define-followup
fix: grammar on netapp client code
2 parents 5cd9c8e + 5eccc17 commit f310fcf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

python/understack-workflows/understack_workflows/netapp/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def get_or_create_port(self, port_spec: PortSpec) -> PortResult:
566566
)
567567

568568
self._error_handler.log_info(
569-
"Port exists successfully on node %(node_name)s",
569+
"Port exists on node %(node_name)s",
570570
{
571571
"node_name": port_spec.node_name,
572572
"uuid": result.uuid,

python/understack-workflows/understack_workflows/netapp/lif_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def create_lif(self, project_id: str, config: NetappIPInterfaceConfig) -> None:
8383
result = self._client.get_or_create_ip_interface(interface_spec)
8484

8585
self._error_handler.log_info(
86-
"LIF exists successfully for project %(project_id)s",
86+
"LIF exists for project %(project_id)s",
8787
{
8888
"project_id": project_id,
8989
"interface_name": result.name,
@@ -154,7 +154,7 @@ def create_home_port(self, config: NetappIPInterfaceConfig) -> PortResult: # py
154154
result = self._client.get_or_create_port(port_spec)
155155

156156
self._error_handler.log_info(
157-
"Home port exists successfully",
157+
"Home port exists.",
158158
{
159159
"interface_name": config.name,
160160
"port_uuid": result.uuid,

0 commit comments

Comments
 (0)