Skip to content

Commit fb96b39

Browse files
committed
move warning to debug
1 parent 3afe57c commit fb96b39

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ads/common/oci_client.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from oci.resource_search import ResourceSearchClient
1818
from oci.secrets import SecretsClient
1919
from oci.vault import VaultsClient
20+
2021
logger = logging.getLogger(__name__)
2122

2223

@@ -64,13 +65,14 @@ def _client_impl(self, client):
6465
"data_labeling_dp": DataLabelingClient,
6566
"data_labeling_cp": DataLabelingManagementClient,
6667
"resource_search": ResourceSearchClient,
67-
"data_catalog": DataCatalogClient
68+
"data_catalog": DataCatalogClient,
6869
}
6970
try:
7071
from oci.feature_store import FeatureStoreClient
72+
7173
client_map["feature_store"] = FeatureStoreClient
7274
except ImportError:
73-
logger.warning("OCI SDK with feature store support is not installed")
75+
logger.debug("OCI SDK with feature store support is not installed")
7476
pass
7577

7678
assert (

0 commit comments

Comments
 (0)