fixing signature (#556)
This commit is contained in:
parent
834814f867
commit
344abbda66
|
@ -39,7 +39,7 @@ def log_status_code(r, *args, **kwargs):
|
||||||
:param kwargs:
|
:param kwargs:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
metrics.send('digicert_status_code_{}'.format(r.status_code))
|
metrics.send('digicert_status_code_{}'.format(r.status_code), 'counter', 1)
|
||||||
|
|
||||||
|
|
||||||
def signature_hash(signing_algorithm):
|
def signature_hash(signing_algorithm):
|
||||||
|
|
|
@ -73,7 +73,7 @@ def log_status_code(r, *args, **kwargs):
|
||||||
:param kwargs:
|
:param kwargs:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
metrics.send('symantec_status_code_{}'.format(r.status_code))
|
metrics.send('symantec_status_code_{}'.format(r.status_code), 'counter', 1)
|
||||||
|
|
||||||
|
|
||||||
def process_options(options):
|
def process_options(options):
|
||||||
|
|
Loading…
Reference in New Issue