diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-10-01 14:54:29 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-10-01 14:54:29 +0000 |
| commit | df33ddaea1e46b5b923440d6383fa3ae85c4d60b (patch) | |
| tree | 89c510638669466453c7451f5eb493f50e850de0 /classes/Digest.php | |
| parent | 8fcc68baf5b0ff964a0a4a045353462586e0e316 (diff) | |
| parent | 7e0f5f295c0480023098edca5e3f5a806bd93bab (diff) | |
Merge branch 'drop-opentelemetry' into 'master'
drop opentelemetry
See merge request tt-rss/tt-rss!68
Diffstat (limited to 'classes/Digest.php')
| -rw-r--r-- | classes/Digest.php | 3 |
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."); } |