[v3-2-test] fix sdk configuration to use $AIRFLOW_CONFIG env (#64936)#65200
Merged
Conversation
* fix sdk configuration to use AIRFLOW_CONFIG env * fix logic (cherry picked from commit 293f172) Co-authored-by: Jeongwoo Do <48639483+wjddn279@users.noreply.github.com>
1 task
potiuk
approved these changes
Apr 14, 2026
vatsrahul1001
pushed a commit
that referenced
this pull request
Apr 15, 2026
vatsrahul1001
pushed a commit
that referenced
this pull request
Apr 15, 2026
vatsrahul1001
pushed a commit
that referenced
this pull request
Apr 15, 2026
vatsrahul1001
pushed a commit
that referenced
this pull request
Apr 15, 2026
53 tasks
pierrejeambrun
added a commit
to astronomer/airflow
that referenced
this pull request
Apr 16, 2026
Log group sections (::group::) were auto-collapsing whenever the UI auto-refreshed or the user scrolled. Two issues combined to cause this: 1. LogBlock.onClick mutated the unfoldedGroups array in-place (.push, .splice) then passed the same reference to setState. React uses Object.is for state comparison — same reference means the update is silently discarded. This worked by accident in React 18 but broke after the React 19 upgrade (7d4c79b). 2. Chakra UI Tabs with isLazy (default lazyBehavior="unmount") unmounts inactive panels, resetting all component state on remount. Fix: use immutable state updates (spread/filter to create new arrays) so React properly detects changes, and add lazyBehavior="keepMounted" so tab panels preserve their state once rendered. closes: apache#65200
1 task
pierrejeambrun
added a commit
that referenced
this pull request
Apr 16, 2026
Log group sections (::group::) were auto-collapsing whenever the UI auto-refreshed or the user scrolled. Two issues combined to cause this: 1. LogBlock.onClick mutated the unfoldedGroups array in-place (.push, .splice) then passed the same reference to setState. React uses Object.is for state comparison — same reference means the update is silently discarded. This worked by accident in React 18 but broke after the React 19 upgrade (7d4c79b). 2. Chakra UI Tabs with isLazy (default lazyBehavior="unmount") unmounts inactive panels, resetting all component state on remount. Fix: use immutable state updates (spread/filter to create new arrays) so React properly detects changes, and add lazyBehavior="keepMounted" so tab panels preserve their state once rendered. closes: #65200
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fix sdk configuration to use AIRFLOW_CONFIG env
fix logic
(cherry picked from commit 293f172)
Co-authored-by: Jeongwoo Do 48639483+wjddn279@users.noreply.github.com