Skip to content

Commit

Permalink
Rename function to be more descriptive that it is discovering cloud p…
Browse files Browse the repository at this point in the history
…roviders specifically so as not to step on other similar changes
  • Loading branch information
djyasin committed Sep 25, 2024
1 parent 439fc0d commit 68b3c0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions awx/main/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from django.utils.translation import gettext_lazy as _

from awx.conf import fields, register
from awx.main.constants import discover_available_plugin_names
from awx.main.constants import discover_available_cloud_provider_plugin_names
from awx.main.utils.common import bypass_in_test
from awx.main.utils.migration import is_database_synchronized
from awx.main.utils.named_url_graph import _customize_graph, generate_graph
Expand Down Expand Up @@ -66,4 +66,4 @@ def ready(self):
self.load_credential_types_feature()
self.load_named_url_feature()

discover_available_plugin_names()
discover_available_cloud_provider_plugin_names()
2 changes: 1 addition & 1 deletion awx/main/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
CLOUD_PROVIDERS = []


def discover_available_plugin_names():
def discover_available_cloud_provider_plugin_names():
global CLOUD_PROVIDERS
from awx.main.models.inventory import InventorySourceOptions

Expand Down

0 comments on commit 68b3c0e

Please sign in to comment.