-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15934 from ggovi/o2o-fixes-0-81X
Various improvements for O2O jobs management
- Loading branch information
Showing
35 changed files
with
662 additions
and
647 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import netrc | ||
import os | ||
|
||
def get_credentials_from_file( service, authFile=None ): | ||
creds = netrc.netrc( authFile ).authenticators(service) | ||
return creds | ||
|
||
def get_credentials( authPathEnvVar, service, authFile=None ): | ||
if authFile is None: | ||
if authPathEnvVar in os.environ: | ||
authPath = os.environ[authPathEnvVar] | ||
authFile = os.path.join(authPath,'.netrc') | ||
return get_credentials_from_file( service, authFile ) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.