prashant2007-wq commented on PR #1536: URL: https://github.com/apache/airflow-site/pull/1536#issuecomment-4501864600
Added verification screenshot for the Meetup autorefresh behavior. <img width="1512" height="982" alt="Screenshot 2026-05-21 at 12 54 00 AM" src="https://github.com/user-attachments/assets/be23990d-bc1e-4bf7-950d-2de6957ca729" /> The screenshot shows the local Meetups page with Chrome DevTools Network tab filtered by `meetups.json`. There are two successful `200` XHR requests for: ```txt meetups.json?updated=... ``` This verifies that: 1. The Meetups page fetches `/meetups.json` on initial page load. 2. The page automatically refetches `/meetups.json` again in the background without a full page reload. For local verification only, I temporarily reduced the refresh interval to 10 seconds so the repeated request could be captured quickly in DevTools. Before committing/pushing, I restored the committed refresh interval back to: ```js const MEETUPS_REFRESH_INTERVAL_MS = 5 * 60 * 1000; ``` So the final PR keeps the production refresh interval at 5 minutes. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
