Skip to content

Commit

Permalink
Revert storage account name prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
parasj committed Apr 12, 2022
1 parent 19aef42 commit 46ad87e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skylark/obj_store/azure_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def full_path(self):
class AzureInterface(ObjectStoreInterface):
def __init__(self, azure_region, account_name, container_name):
# TODO (#210): should be configured via argument
self.account_name = f"skylarkparas1{azure_region.replace(' ', '').lower()}"
self.account_name = f"skylark{azure_region.replace(' ', '').lower()}"
self.container_name = container_name

# Create a blob service client
Expand Down

0 comments on commit 46ad87e

Please sign in to comment.