Skip to content

Commit

Permalink
Pass the zone when listing result of blockstorage operations
Browse files Browse the repository at this point in the history
  • Loading branch information
aureliar8 committed Aug 23, 2024
1 parent 3dbd9b5 commit 969fd92
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmd/blockstorage_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ func (c *blockStorageCreateCmd) cmdRun(_ *cobra.Command, _ []string) error {
return (&blockStorageShowCmd{
cliCommandSettings: c.cliCommandSettings,
Name: c.Name,
Zone: c.Zone,
}).cmdRun(nil, nil)
}

Expand Down
1 change: 1 addition & 0 deletions cmd/blockstorage_snapshot_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ func (c *blockStorageSnapshotCreateCmd) cmdRun(_ *cobra.Command, _ []string) err
return (&blockStorageSnapshotShowCmd{
cliCommandSettings: c.cliCommandSettings,
Name: name,
Zone: c.Zone,
}).cmdRun(nil, nil)
}

Expand Down
1 change: 1 addition & 0 deletions cmd/blockstorage_snapshot_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ func (c *blockStorageSnapshotUpdateCmd) cmdRun(cmd *cobra.Command, _ []string) e
return (&blockStorageSnapshotShowCmd{
cliCommandSettings: c.cliCommandSettings,
Name: name,
Zone: c.Zone,
}).cmdRun(nil, nil)
}

Expand Down
1 change: 1 addition & 0 deletions cmd/blockstorage_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ func (c *blockStorageUpdateCmd) cmdRun(cmd *cobra.Command, _ []string) error {
return (&blockStorageShowCmd{
cliCommandSettings: c.cliCommandSettings,
Name: name,
Zone: c.Zone,
}).cmdRun(nil, nil)
}

Expand Down

0 comments on commit 969fd92

Please sign in to comment.