aboutsummaryrefslogtreecommitdiff
path: root/classes/Digest.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-10-01 16:00:34 +0300
committerAndrew Dolgov <fox@fakecake.org>2024-10-01 16:00:34 +0300
commit884fd92f1320d17daebb772297da03fb2cfa59b8 (patch)
tree3aa80af1df6ffa1d70f21f9fc4411f451c8b6c56 /classes/Digest.php
parent8fcc68baf5b0ff964a0a4a045353462586e0e316 (diff)
drop opentelemetry
Diffstat (limited to 'classes/Digest.php')
-rw-r--r--classes/Digest.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/classes/Digest.php b/classes/Digest.php
index 6005f5fe4..cad808711 100644
--- a/classes/Digest.php
+++ b/classes/Digest.php
@@ -2,8 +2,6 @@
class Digest
{
static function send_headlines_digests(): void {
- $span = Tracer::start(__METHOD__);
-
$user_limit = 15; // amount of users to process (e.g. emails to send out)
$limit = 1000; // maximum amount of headlines to include
@@ -77,7 +75,6 @@ class Digest
}
}
- $span->end();
Debug::log("All done.");
}