DataDog/system-tests

Rewrite `released` decorator to only use one tracer (solving decorator hell issue)

cbeauchesne opened this issue · 1 comments

Rewrite `released` decorator to only use one tracer (solving decorator hell issue)

well, probably more a linter issue, if we use this

@released(
    A=x
    B=y
    C=z
)

rather

@released(A=x, B=y, C=z)