Skip to content

Commit 5dc9a11

Browse files
authored
Merge pull request #3113 from BSd3v/strip-background-polls
Stripping Input Data from Background Callback Polling
2 parents c3bbbe3 + da8494d commit 5dc9a11

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
## [unreleased]
6+
7+
## Changed
8+
- [#3113](https://github.com/plotly/dash/pull/3113) Adjusted background polling requests to strip the data from the request, this allows for context to flow as normal. This addresses issue [#3111](https://github.com/plotly/dash/pull/3111)
9+
10+
511
## [3.0.1] - 2025-03-24
612

713
## Fixed

dash/dash-renderer/src/actions/callbacks.ts

+15-6
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,7 @@ function handleServerside(
440440
const fetchCallback = () => {
441441
const headers = getCSRFHeader() as any;
442442
let url = `${urlBase(config)}_dash-update-component`;
443+
let newBody = body;
443444

444445
const addArg = (name: string, value: string) => {
445446
let delim = '?';
@@ -448,11 +449,19 @@ function handleServerside(
448449
}
449450
url = `${url}${delim}${name}=${value}`;
450451
};
451-
if (cacheKey) {
452-
addArg('cacheKey', cacheKey);
453-
}
454-
if (job) {
455-
addArg('job', job);
452+
if (cacheKey || job) {
453+
if (cacheKey) addArg('cacheKey', cacheKey);
454+
if (job) addArg('job', job);
455+
456+
// clear inputs as background callback doesnt need inputs, just verify for context
457+
const tmpBody = JSON.parse(newBody);
458+
for (let i = 0; i < tmpBody.inputs.length; i++) {
459+
tmpBody.inputs[i]['value'] = null;
460+
}
461+
for (let i = 0; i < (tmpBody?.state || []).length; i++) {
462+
tmpBody.state[i]['value'] = null;
463+
}
464+
newBody = JSON.stringify(tmpBody);
456465
}
457466

458467
if (moreArgs) {
@@ -465,7 +474,7 @@ function handleServerside(
465474
mergeDeepRight(config.fetch, {
466475
method: 'POST',
467476
headers,
468-
body
477+
body: newBody
469478
})
470479
);
471480
};

0 commit comments

Comments
 (0)