DataDog / system-tests

Test framework for libraries and agents.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

cbeauchesne opened this issue · comments

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)