diff options
author | 2019-09-06 09:31:05 -0700 | |
---|---|---|
committer | 2019-09-06 12:31:05 -0400 | |
commit | e4df752b17a908c0cef9d3f91cb45856466a08dc (patch) | |
tree | e17f5b997dff73be6d2983cfd2f36ab78ee0c667 /plugin | |
parent | 41115fb93d4f806d14ad04044ac8ee9d1820052e (diff) | |
download | coredns-e4df752b17a908c0cef9d3f91cb45856466a08dc.tar.gz coredns-e4df752b17a908c0cef9d3f91cb45856466a08dc.tar.zst coredns-e4df752b17a908c0cef9d3f91cb45856466a08dc.zip |
Update go mod tidy (and fix for Azure/go-autorest & azure-sdk-for-go) (#3258)
See https://github.com/coredns/coredns/pull/3209#issuecomment-525016357
for the previous issues, also see https://github.com/Azure/go-autorest/issues/414
for some further background.
Basically go mod has some issue when multiple tags exists (as main module and submodule)
within the same repo. That was fixed in go-autorest very recently, though
azure-sdk-for-go has not been fully updated yet.
This fix is a temporarily one with `replace` fix. Once azure-sdk-for-go
is updated then we could drop the `replace fix`
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/chaos/zowners.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/chaos/zowners.go b/plugin/chaos/zowners.go index 41b8f690e..c423fc0c4 100644 --- a/plugin/chaos/zowners.go +++ b/plugin/chaos/zowners.go @@ -1,4 +1,4 @@ package chaos // Owners are all GitHub handlers of all maintainers. -var Owners = []string{"bradbeam", "chrisohaver", "darshanime", "dilyevsky", "ekleiner", "fastest963", "greenpau", "grobie", "inigohu", "isolus", "johnbelamaric", "miekg", "nchrisdk", "nitisht", "pmoroney", "rajansandeep", "rdrozhdzh", "rtreffer", "stp-ip", "superq", "varyoo", "yongtang"} +var Owners = []string{"bradbeam", "chrisohaver", "darshanime", "dilyevsky", "ekleiner", "fastest963", "greenpau", "grobie", "ihac", "inigohu", "isolus", "johnbelamaric", "miekg", "nchrisdk", "nitisht", "pmoroney", "rajansandeep", "rdrozhdzh", "rtreffer", "stp-ip", "superq", "varyoo", "yongtang"} |