Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Newton committed Feb 27, 2024
1 parent 3340131 commit e39c079
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion python/pyarrow/_azurefs.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cdef class AzureFileSystem(FileSystem):
By default `DefaultAzureCredential <https://github.com/Azure/azure-sdk-for-cpp/blob/main/sdk/identity/azure-identity/README.md#defaultazurecredential>`__
is used for authentication. This means it will try several types of authentication
and go with the first one that works. If any authentication parameters are provided when
initialising the FileSysem, they will be used instead of the default credential.
initialising the FileSystem, they will be used instead of the default credential.
Parameters
----------
Expand Down
12 changes: 6 additions & 6 deletions python/pyarrow/tests/test_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,17 +297,17 @@ def azurefs(request, azure_server):
from pyarrow.fs import AzureFileSystem

host, port, account_name, account_key = azure_server['connection']
azureite_authority = f"{host}:{port}"
azureite_scheme = "http"
azurite_authority = f"{host}:{port}"
azurite_scheme = "http"

container = 'pyarrow-filesystem/'

fs = AzureFileSystem(account_name=account_name,
account_key=account_key,
blob_storage_authority=azureite_authority,
dfs_storage_authority=azureite_authority,
blob_storage_scheme=azureite_scheme,
dfs_storage_scheme=azureite_scheme)
blob_storage_authority=azurite_authority,
dfs_storage_authority=azurite_authority,
blob_storage_scheme=azurite_scheme,
dfs_storage_scheme=azurite_scheme)

fs.create_dir(container)

Expand Down

0 comments on commit e39c079

Please sign in to comment.