Skip to content

Commit 2147bc2

Browse files
Ramkishor ChaladiRamkishor Chaladi
authored andcommitted
removed unnecesary whitespaces
1 parent a383518 commit 2147bc2

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

SoftLayer/CLI/block/access/authorize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@environment.pass_env
2323
def cli(env, volume_id, hardware_id, virtual_id, ip_address_id, ip_address):
2424
"""Authorize hosts to access a given volume.
25-
25+
2626
EXAMPLE::
2727
2828
slcli block access-authorize 12345678 --virtual-id 87654321

SoftLayer/CLI/block/access/list.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
@environment.pass_env
2323
def cli(env, columns, sortby, volume_id):
2424
"""List hosts that are authorized to access the volume.
25-
25+
2626
EXAMPLE::
27-
28-
slcli block access-list 12345678 --sortby id
27+
28+
slcli block access-list 12345678 --sortby id
2929
This command lists all hosts that are authorized to access volume with ID 12345678 and sorts them by ID.
3030
"""
3131
block_manager = SoftLayer.BlockStorageManager(env.client)

SoftLayer/CLI/block/access/revoke.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
@environment.pass_env
2020
def cli(env, volume_id, hardware_id, virtual_id, ip_address_id, ip_address):
2121
"""Revoke authorization for hosts that are accessing a specific volume.
22-
22+
2323
EXAMPLE::
24-
24+
2525
slcli block access-revoke 12345678 --virtual-id 87654321
2626
This command revokes access of virtual server with ID 87654321 to volume with ID 12345678.
2727
"""

SoftLayer/CLI/block/replication/disaster_recovery_failover.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010

1111
@click.command(cls=SoftLayer.CLI.command.SLCommand,
12-
epilog="""If a volume (with replication) becomes inaccessible due to a disaster event, this method can be used to immediately
12+
epilog="""If a volume (with replication) becomes inaccessible due to a disaster event,
13+
this method can be used to immediately
1314
failover to an available replica in another location. This method does not allow for failback via API.
1415
After using this method, to failback to the original volume, please open a support ticket.
1516
If you wish to test failover, please use replica-failover.""")
@@ -18,8 +19,9 @@
1819
@environment.pass_env
1920
def cli(env, volume_id, replicant_id):
2021
"""Failover an inaccessible block volume to its available replicant volume.
21-
22+
2223
EXAMPLE::
24+
2325
slcli block disaster-recovery-failover 12345678 87654321
2426
This command performs failover operation for volume with ID 12345678 to replica volume with ID 87654321.
2527
"""

0 commit comments

Comments
 (0)