File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ struct ARROW_EXPORT AzureOptions {
136136 private:
137137 void ExtractFromUriSchemeAndHierPart (const Uri& uri, std::string* out_path);
138138 Status ExtractFromUriQuery (const Uri& uri);
139+ void ClearCredentials ();
139140
140141 public:
141142 // / \brief Construct a new AzureOptions from an URI.
@@ -187,7 +188,6 @@ struct ARROW_EXPORT AzureOptions {
187188 static Result<AzureOptions> FromUri (const Uri& uri, std::string* out_path);
188189 static Result<AzureOptions> FromUri (const std::string& uri, std::string* out_path);
189190
190- void ClearCredentials ();
191191 Status ConfigureDefaultCredential ();
192192 Status ConfigureAnonymousCredential ();
193193 Status ConfigureAccountKeyCredential (const std::string& account_key);
Original file line number Diff line number Diff line change @@ -650,7 +650,7 @@ def loads(self, data):
650650@pytest .fixture (params = [True , False ])
651651def pickle_with_and_without_subtree_filesystem (pickle_module , request ):
652652 # When creating a SubTreeFileSystem, the python side object for the base
653- # filesystem is lost. This makes it pickling a scenario worth testing.
653+ # filesystem is lost. This makes it a pickling scenario worth testing.
654654 wrap_with_subtree_filesystem = request .param
655655 if wrap_with_subtree_filesystem :
656656 return _PickleModuleSubTreeFileSystemWrapper (pickle_module )
You can’t perform that action at this time.
0 commit comments