Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptisteFoy committed Jan 21, 2025
1 parent 39af866 commit df2f272
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ddtrace/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

# Configuration for the whole tracer from file. Do it before anything else happens.
from ddtrace.internal.config import PyConfigurator

configurator = PyConfigurator(debug_logs=False)
configurator.set_envp(["%s=%s" % (k, v) for k, v in os.environ.items()])
configurator.set_args(sys.argv)
Expand Down
2 changes: 1 addition & 1 deletion ddtrace/internal/config/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from ._config import PyConfigurator # noqa:F401
from ._config import PyConfigurator # noqa:F401
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ Datadog::Crashtracker::start()
auto result = ddog_crasht_init(config, receiver_config, metadata);
ddog_Vec_Tag_drop(tags);
if (result.tag != DDOG_VOID_RESULT_OK) { // NOLINT (cppcoreguidelines-pro-type-union-access)
auto err = result.err; // NOLINT (cppcoreguidelines-pro-type-union-access)
auto err = result.err; // NOLINT (cppcoreguidelines-pro-type-union-access)
std::string errmsg = err_to_msg(&err, "Error initializing crash tracker");
std::cerr << errmsg << std::endl;
ddog_Error_drop(&err);
Expand Down

0 comments on commit df2f272

Please sign in to comment.