We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2a276f commit 0c1983bCopy full SHA for 0c1983b
dart/lib/src/transport/http_transport.dart
@@ -35,13 +35,6 @@ class HttpTransport implements Transport {
35
36
@override
37
Future<SentryId?> send(SentryEnvelope envelope) async {
38
- // final filteredEnvelope = _rateLimiter.filter(envelope);
39
- // if (filteredEnvelope == null) {
40
- // return SentryId.empty();
41
- // }
42
- // final clientReport = _options.recorder.flush();
43
- // envelope.addClientReport(clientReport);
44
-
45
envelope.header.sentAt = _options.clock();
46
47
final streamedRequest = await _requestHandler.createRequest(envelope);
0 commit comments