Tag

BugFix

0 views collected around this technical thread.

ZhongAn Tech Team
ZhongAn Tech Team
Sep 1, 2023 · Backend Development

Investigation and Fix of OpenTelemetry ThreadPool Trace Propagation Bug in Non‑Capturing Lambda Scenarios

This article analyzes a sporadic loss of trace information when using OpenTelemetry’s non‑capturing lambda tasks in a Java ThreadPoolExecutor, explains the underlying cause related to Runnable reuse and lambda caching, and presents the community‑driven patches that correctly propagate context across threads.

BugFixJavaOpenTelemetry
0 likes · 10 min read
Investigation and Fix of OpenTelemetry ThreadPool Trace Propagation Bug in Non‑Capturing Lambda Scenarios
Laravel Tech Community
Laravel Tech Community
Mar 20, 2023 · Databases

SQLAlchemy 2.0.7 Released with Critical SQL Cache Bug Fix and Additional Improvements

SQLAlchemy 2.0.7 has been released, addressing a critical caching bug in custom operator expressions, fixing typing issues with composite(), adding the PostgreSQL CITEXT type, and improving dialect compatibility, with all changes back‑ported to earlier stable releases.

BugFixDatabaseORM
0 likes · 2 min read
SQLAlchemy 2.0.7 Released with Critical SQL Cache Bug Fix and Additional Improvements
Laravel Tech Community
Laravel Tech Community
Feb 5, 2023 · Backend Development

PHP 8.2.2 Released – Comprehensive Bug‑Fix Update

PHP 8.2.2, a bug‑fix release, addresses numerous issues across the core engine, FPM, hash, LDAP, opcache, phar, PHPDBG, POSIX, random, standard library, and XMLWriter components, providing a more stable and secure version for developers.

BugFixOpCachePHP
0 likes · 4 min read
PHP 8.2.2 Released – Comprehensive Bug‑Fix Update
Laravel Tech Community
Laravel Tech Community
Jan 31, 2023 · Databases

Redis 7.0.8 Released with Security and Bug Fixes

Redis version 7.0.8 has been released, addressing critical security vulnerabilities (CVE-2022-35977 and CVE-2023-22458) and fixing several bugs related to command handling, incremental rehashing, timeout blocking, and sentinel IP changes, with a full changelog available on GitHub.

BugFixDatabaseRedis
0 likes · 2 min read
Redis 7.0.8 Released with Security and Bug Fixes
Laravel Tech Community
Laravel Tech Community
Dec 14, 2022 · Backend Development

Nginx 1.23.3 Release Overview and Key Changes

Nginx 1.23.3, the lightweight web and reverse‑proxy server developed by Igor Sysoev, introduces several bug fixes and a hostname‑resolution workaround while continuing to offer low‑memory, high‑concurrency performance across multiple operating systems.

BugFixNginxReverse Proxy
0 likes · 2 min read
Nginx 1.23.3 Release Overview and Key Changes
Laravel Tech Community
Laravel Tech Community
Jun 23, 2022 · Backend Development

Nginx 1.23.0 Mainline Release – Key Changes and Bug Fixes

Version 1.23.0 of the Nginx mainline branch introduces several internal API updates, header handling improvements, bug fixes for Vary and WWW‑Authenticate headers, SSL logging level adjustments, EPOLLRDHUP handling, and corrected caching behavior for Expires and Cache‑Control headers.

BugFixNginxbackend
0 likes · 3 min read
Nginx 1.23.0 Mainline Release – Key Changes and Bug Fixes
JD Tech
JD Tech
Jun 20, 2022 · Backend Development

Analyzing MyBatis Query Process and Fixing a Pre‑3.4.5 foreach Variable Bug

This article examines a MyBatis bug present in versions prior to 3.4.5 by reproducing the issue, walking through the complete query execution flow from configuration parsing to result handling, identifying the root cause in foreach variable binding, and presenting official fixes and practical work‑arounds.

BugFixJavaMyBatis
0 likes · 19 min read
Analyzing MyBatis Query Process and Fixing a Pre‑3.4.5 foreach Variable Bug
Liulishuo Tech Team
Liulishuo Tech Team
Sep 30, 2021 · Mobile Development

Investigation and Fix of Audio Playback Stutter on iOS 14.5 Using Audio Queue and AVPlayer

The article details a systematic investigation of intermittent audio playback stutter on iOS 14.5, tracing the issue from AVPlayer playback through Audio Queue recording, analyzing AudioStreamBasicDescription parameters and buffer size inconsistencies, and presenting a code‑level fix that aligns buffer sizes before invoking AudioConverterFillComplexBuffer.

AVPlayerAudioEncodingAudioQueue
0 likes · 12 min read
Investigation and Fix of Audio Playback Stutter on iOS 14.5 Using Audio Queue and AVPlayer
FunTester
FunTester
Aug 29, 2019 · Fundamentals

Avoid Removing Elements While Iterating: Java ConcurrentModificationException Example and Fix

During a product bug investigation, the author demonstrates how removing entries from a Java HashMap while iterating triggers a ConcurrentModificationException, provides the faulty code, shows the exception stack trace, and presents a safe fix that collects keys first and removes them after iteration.

BugFixConcurrentModificationExceptionHashMap
0 likes · 3 min read
Avoid Removing Elements While Iterating: Java ConcurrentModificationException Example and Fix
Baidu Intelligent Testing
Baidu Intelligent Testing
Nov 20, 2015 · Databases

Analysis and Fix of a Redis Replication Offset Bug Caused by Full‑Sync Interference

This article details a deep‑rooted Redis replication bug where slave offsets become larger than the master after a network interruption, explains the underlying cause in the full‑sync process, describes the code changes made to fix it, and offers testing and prevention guidance.

BugFixDatabaseFullSync
0 likes · 11 min read
Analysis and Fix of a Redis Replication Offset Bug Caused by Full‑Sync Interference