Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

lint (#86)

authored by

Leon Shi and committed by
GitHub
7cda5574 3f952176

+3 -1
+3 -1
osprey_worker/src/osprey/worker/sinks/sink/output_sink.py
··· 70 70 sentry_sdk.capture_exception() 71 71 except Exception as exc: 72 72 errors[sink] = exc 73 - metrics.increment('output_sink.error', tags=[f'sink:{sink_name}', f'error:{exc.__class__.__name__}']) 73 + metrics.increment( 74 + 'output_sink.error', tags=[f'sink:{sink_name}', f'error:{exc.__class__.__name__}'] 75 + ) 74 76 # Capture the current exception for now until we fix PartialSinkFailure 75 77 sentry_sdk.capture_exception() 76 78