Skip to content

Commit

Permalink
use the non-deprecated func (apache#1326)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjqliu authored Nov 15, 2024
1 parent 60800d8 commit b2f0a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiceberg/catalog/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ def table_exists(self, identifier: Union[str, Identifier]) -> bool:

@retry(**_RETRY_ARGS)
def drop_view(self, identifier: Union[str]) -> None:
identifier_tuple = self.identifier_to_tuple_without_catalog(identifier)
identifier_tuple = self._identifier_to_tuple_without_catalog(identifier)
response = self._session.delete(
self.url(
Endpoints.drop_view, prefixed=True, **self._split_identifier_for_path(identifier_tuple, IdentifierKind.VIEW)
Expand Down

0 comments on commit b2f0a9e

Please sign in to comment.