Skip to content
Merged
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
Prev Previous commit
Next Next commit
Use custom_show_command instead of custom_command for 'show' to fix a…
… linter finding.
  • Loading branch information
Rajesh1Ganesan committed May 21, 2021
commit c641916da309337d951d6968523085eeb3cf3078
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def load_flexibleserver_command_table(self, _):
client_factory=cf_postgres_flexible_firewall_rules,
is_preview=True) as g:
g.custom_command('create', 'migration_create_func', custom_command_type=flexible_server_custom_common)
g.custom_command('show', 'migration_show_func', custom_command_type=flexible_server_custom_common)
g.custom_show_command('show', 'migration_show_func', custom_command_type=flexible_server_custom_common)
g.custom_command('list', 'migration_list_func', custom_command_type=flexible_server_custom_common)
g.custom_command('update', 'migration_update_func', custom_command_type=flexible_server_custom_common)
g.custom_command('delete', 'migration_delete_func', custom_command_type=flexible_server_custom_common)
Expand Down