Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{dls} Update azure-datalake-store dependency #29408

Merged
merged 3 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ class DataLakeStoreFileAccessScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_adls_access')
def test_dls_file_access_mgmt(self):

user_id = '470c0ccf-c91a-4597-98cd-48507d2f1486'
user_id = 'ac37fe14-8b7a-4883-b02b-c7ed6f871165'

self.kwargs.update({
'dls': self.create_random_name('cliadls', 24),
'loc': 'eastus2',
'loc': 'westus2',
'dir': 'adltestfolder01',
'user_id': user_id,
'acl_to_add': 'user:{}:rwx'.format(user_id),
Expand Down Expand Up @@ -53,9 +53,10 @@ def test_dls_file_access_mgmt(self):
])

# set the owner and owning group for the file and confirm them

self.kwargs.update({
'group_id': '80a3ed5f-959e-4696-ba3c-d3c8b2db6766',
'user_id': '6361e05d-c381-4275-a932-5535806bb323'
'group_id': 'a0fe7455-56dd-498f-b7d1-bacbdb573abd',
'user_id': 'ac37fe14-8b7a-4883-b02b-c7ed6f871165'
})
self.cmd('dls fs access set-owner -n {dls} --path "{dir}" --group {group_id} --owner {user_id}')

Expand Down Expand Up @@ -142,7 +143,7 @@ def test_dls_file_mgmt(self):
local_folder = 'adls_resources'
self.kwargs.update({
'dls': self.create_random_name('cliadls', 24),
'loc': 'eastus2',
'loc': 'westus2',
'dir': local_folder,
'local_folder': os.path.join(os.getcwd(), local_folder),
'local_file': os.path.join(local_folder, 'sample_file.txt'),
Expand Down Expand Up @@ -306,7 +307,7 @@ def test_dls_account_mgmt(self, resource_group):

self.kwargs.update({
'dls': self.create_random_name('cliadls', 24),
'loc': 'eastus2',
'loc': 'westus2',
'updated_subnet': 'updatedSubnet'
})

Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/requirements.py3.Darwin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ azure-common==1.1.22
azure-core==1.28.0
azure-cosmos==3.2.0
azure-data-tables==12.4.0
azure-datalake-store==0.0.49
azure-datalake-store==0.0.53
azure-graphrbac==0.60.0
azure-keyvault-administration==4.4.0b2
azure-keyvault-certificates==4.7.0
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/requirements.py3.Linux.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ azure-common==1.1.22
azure-core==1.28.0
azure-cosmos==3.2.0
azure-data-tables==12.4.0
azure-datalake-store==0.0.49
azure-datalake-store==0.0.53
azure-graphrbac==0.60.0
azure-keyvault-administration==4.4.0b2
azure-keyvault-certificates==4.7.0
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/requirements.py3.windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ azure-common==1.1.22
azure-core==1.28.0
azure-cosmos==3.2.0
azure-data-tables==12.4.0
azure-datalake-store==0.0.49
azure-datalake-store==0.0.53
azure-graphrbac==0.60.0
azure-keyvault-administration==4.4.0b2
azure-keyvault-certificates==4.7.0
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
'azure-cli-core=={}'.format(VERSION),
'azure-cosmos~=3.0,>=3.0.2',
'azure-data-tables==12.4.0',
'azure-datalake-store~=0.0.49',
'azure-datalake-store~=0.0.53',
'azure-graphrbac~=0.60.0',
'azure-keyvault-administration==4.4.0b2',
'azure-keyvault-certificates==4.7.0',
Expand Down
Loading