This repository has been archived by the owner on Mar 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We have moved to using the GaaP pingdom account, which is using multi-user Pingdom. In order to make requests to the Pingdom API for multi-user accounts we must pass the header 'Account-Email', the value of which is '[email protected]'. - Bump the version to 0.3.2 - Get the header from the config - Pass the header to Pingdom solo @tlwr
- Loading branch information
Toby Lorne
committed
Aug 9, 2018
1 parent
1b137e8
commit 876b24d
Showing
3 changed files
with
6 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
from pkgutil import extend_path | ||
__path__ = extend_path(__path__, __name__) | ||
|
||
__version__ = "0.3.1" | ||
__version__ = "0.3.2" | ||
__author__ = "GDS Developers" | ||
__author_email__ = "[email protected]" |
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 |
---|---|---|
|
@@ -17,7 +17,8 @@ def setUp(self): | |
self.config = { | ||
"user": "[email protected]", | ||
"password": "secret", | ||
"app_key": "12345" | ||
"app_key": "12345", | ||
"account_email": "[email protected]" | ||
} | ||
|
||
def test_init_from_config(self): | ||
|