key_server: remove s at the end of endpoint
This commit is contained in:
parent
e456228434
commit
136f92400f
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ def get_service_key(service, kid):
|
||||||
|
|
||||||
|
|
||||||
@key_server.route('/services/<service>/keys/<kid>', methods=['PUT'])
|
@key_server.route('/services/<service>/keys/<kid>', methods=['PUT'])
|
||||||
def put_service_keys(service, kid):
|
def put_service_key(service, kid):
|
||||||
metadata = {'ip': request.remote_addr}
|
metadata = {'ip': request.remote_addr}
|
||||||
|
|
||||||
expiration_date = request.args.get('expiration', None)
|
expiration_date = request.args.get('expiration', None)
|
||||||
|
|
Reference in a new issue