blanariu
efc4d99d8d
Replaced conditional imports with six
5 years ago
blanariu
e934ea0423
Fix bug in ultra provider tests when run in Python 2.7
The test_login test from TestUltraProvider would fail in Python 2.7
due to the dictionary insertion order not being preserved in 2.7
and early 3.x versions. Comparing the dictionaries containing the
query parameters solves this. Snippet from test failure:
- username=user&password=rightpass&grant_type=password
+ grant_type=password&username=user&password=rightpass
5 years ago
blanariu
749f0bd90f
Fix bug in envvar source tests when run in Python 2.7
Due to an import error the envvar source tests would not run
in Python 2.7
5 years ago
blanariu
3cc0fac817
Fix bug in Manager when using Python 2.7
In Python 2.7 the if statement would catch both cases from the test
test_populate_lenient_fallback, so the test was failing. These are
the error strings differences between Python 2 and 3:
Python 2:
NoLenient: populate() got an unexpected keyword argument 'lenient'
NoZone: populate() got multiple values for keyword argument 'lenient'
Python 3:
NoLenient: populate() got an unexpected keyword argument 'lenient'
NoZone: populate() got multiple values for argument 'lenient'
5 years ago
Ross McFarland
6cac4b060a
Merge pull request #727 from iordanisg/fix_typo
Fix typo
5 years ago
Iordanis Grigoriou
794fca0ee7
Fix typo
5 years ago
Ross McFarland
f819c3d612
Merge pull request #726 from eilla1/fix/docs
Add alt text to images
5 years ago
Ella
501ae88673
chore: use =
5 years ago
Ella
fb805ced62
chore: add alt text to images
5 years ago
Ella
a31fa189c1
fix: update syntax for commands
for example:
`$ octodns-sync --config-file=./config/production.yaml` was throwing an error. Then, when i did `$ octodns-dump`, it prompted me to put it in this format: `$ octodns-sync --config-file CONFIG_FILE` (without the = sign)
5 years ago
Ross McFarland
0867d98731
Merge pull request #725 from viranch/azuredns-reused-pool
Handle re-used pools in Azure DNS dynamic records
5 years ago
Ross McFarland
8b6f05313b
Merge branch 'master' into azuredns-reused-pool
5 years ago
Ross McFarland
958360ad7a
Merge pull request #720 from meghashyamps/sham/issue-710
Allow the option to not pass Host header in healthchecks
5 years ago
Ross McFarland
4fc2d4e246
Merge branch 'master' into sham/issue-710
5 years ago
Viranch Mehta
725189af49
Handle re-used pools in Azure DNS dynamic records
5 years ago
Viranch Mehta
fec0aea144
minor clean up of azuredns tests
5 years ago
Ross McFarland
36de6ca8f7
Merge pull request #724 from viranch/azuredns-unique-atm
Ensure that dynamic records map to unique Azure TM profiles
5 years ago
Viranch Mehta
6734448462
log warning when dynamic CNAME has broken alias
5 years ago
Sham
53608cbcf9
Merge branch 'octodns:master' into sham/issue-710
5 years ago
Viranch Mehta
7e0c6296fb
ensure dynamic records map to unique ATM profiles
5 years ago
Viranch Mehta
5a943f0b13
handle broken alias to ATM for dynamic records
5 years ago
Viranch Mehta
f90d261133
drop Azure DNS env vars in scripts
5 years ago
Ross McFarland
a994ab9daf
Merge pull request #723 from viranch/azuredns-optimize
minimize Azure Traffic Manager hops for dynamic records
5 years ago
Viranch Mehta
aaffdb1388
minimize Azure Traffic Manager hops
5 years ago
Viranch Mehta
18c0e56759
log.debug the reason for profile mismatch
5 years ago
Viranch Mehta
e97675fe3d
check dns config when comparing profiles for equality
5 years ago
Ross McFarland
92d14587b1
Merge pull request #721 from sbrinkerhoff/master
UltradnsProvider: Add support for ALIAS type (fix #644 )
5 years ago
Stan Brinkerhoff
6e71f2df76
update test record
5 years ago
Stan Brinkerhoff
60f916cd24
add contents for alias method, test for alias
5 years ago
Ross McFarland
e816e8e49b
Fixed extraneous whitespace in format in UltraDNS
5 years ago
sbrinkerhoff
4b6fd8b4a1
Remove type mutation
Co-authored-by: Ross McFarland <ross@github.com>
5 years ago
Stan Brinkerhoff
f00766a779
Add support for ALIAS type
5 years ago
Sham
eb14873abb
Allow the option to not pass Host header in healthchecks
5 years ago
Ross McFarland
ae37d17250
Merge pull request #716 from futureplc/dynamic-cname
Do not trigger change for health checks on cname dynamic records
5 years ago
Tom Kaminski
0ce7d22d1b
Merge branch 'master' into dynamic-cname
5 years ago
Tom Kaminski
62122e4429
More explicit check for CNAME records when checking for extra updates
5 years ago
Ross McFarland
725e56b29d
Merge pull request #717 from viranch/azuredns-oceania
map Oceania to Australia/Pacific in Azure
5 years ago
Viranch Mehta
5f57b52d07
map Oceania to Australia/Pacific in Azure
5 years ago
Tom Kaminski
f5d81be2fb
Merge branch 'master' into dynamic-cname
5 years ago
Tom Kaminski
b02d5d0a2d
Do not trigger change for health checks on cname dynamic records
5 years ago
Ross McFarland
a79e2f3abd
Merge pull request #706 from viranch/azuredns-dynamic
Support dynamic records in Azure DNS
5 years ago
Ross McFarland
753a337ecc
Fix weights on new Azure dynamic record tests
5 years ago
Ross McFarland
abef3202a0
Merge branch 'master' into azuredns-dynamic
5 years ago
Ross McFarland
12cd49d0af
Merge pull request #715 from octodns/single-value-weight-validation
Add a validation requiring single value weight=1
5 years ago
Ross McFarland
e1d262a301
Add a validation requiring single value weight=1
5 years ago
Viranch Mehta
cca288faa6
log warning when non-1 weight is set for single-value pools
5 years ago
Viranch Mehta
1b5bf75c58
drop method names from exceptions
5 years ago
Viranch Mehta
5df2077ed0
clarify the limitations and caveats of azure dynamic records
5 years ago
Viranch Mehta
3bcd032eba
Merge branch 'master' into azuredns-dynamic
5 years ago
Ross McFarland
8be24f10a1
Merge pull request #709 from shollingsworth/issue-707-lenient-flag-doc
Updated doc to reflect config file location for zone wide lenient flag Fixes octodns/octodns#707
5 years ago