Skip to content

Commit 711e47f

Browse files
committed
1 parent 5b8a794 commit 711e47f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Sentry/Platforms/Native/CFunctions.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,7 @@ private static void nativeTransport(IntPtr envelope, IntPtr state)
407407

408408
using var client = options.GetHttpClient();
409409
using var request = options.CreateRequest(content);
410-
// TODO: fix integration-test/sentry-server.py with gzip compression
411-
// client.SendAsync(request).GetAwaiter().GetResult();
412-
client.Send(request);
410+
client.SendAsync(request).GetAwaiter().GetResult();
413411
}
414412
}
415413
catch

0 commit comments

Comments
 (0)