1
0
Fork 1
mirror of https://github.com/distribution/distribution synced 2024-10-07 08:07:54 +00:00

Merge pull request #189 from donhcd/rootcertbundle

Rename auth.token.{rootCertBundle -> rootcertbundle}
This commit is contained in:
Stephen Day 2015-02-19 19:31:55 -08:00
commit 5c4f03d38e
2 changed files with 2 additions and 2 deletions

View file

@ -146,7 +146,7 @@ type tokenAccessOptions struct {
func checkOptions(options map[string]interface{}) (tokenAccessOptions, error) {
var opts tokenAccessOptions
keys := []string{"realm", "issuer", "service", "rootCertBundle"}
keys := []string{"realm", "issuer", "service", "rootcertbundle"}
vals := make([]string, 0, len(keys))
for _, key := range keys {
val, ok := options[key].(string)

View file

@ -261,7 +261,7 @@ func TestAccessController(t *testing.T) {
"realm": realm,
"issuer": issuer,
"service": service,
"rootCertBundle": rootCertBundleFilename,
"rootcertbundle": rootCertBundleFilename,
}
accessController, err := newAccessController(options)