This is an automated email from the ASF dual-hosted git repository.
rmetzger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 9d52f18b028 [hotfix][runtime-web] Fix savepointPath query parameter in
JarService.runJob() (#28722)
9d52f18b028 is described below
commit 9d52f18b02828d1c13b7f707ee076db1f768d862
Author: Purushottam Sinha <[email protected]>
AuthorDate: Mon Jul 13 11:01:32 2026 +0530
[hotfix][runtime-web] Fix savepointPath query parameter in
JarService.runJob() (#28722)
JarService.runJob() appended the programArgs value under the
savepointPath query key instead of savepointPath itself. This has been
harmless in practice because the backend (JarRunHandler) prefers the
value already present in the POST body over the query parameter, but
the query parameter itself was wrong.
Generated-by: Claude Code (claude-sonnet-5)
---
flink-runtime-web/web-dashboard/src/app/services/jar.service.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/flink-runtime-web/web-dashboard/src/app/services/jar.service.ts
b/flink-runtime-web/web-dashboard/src/app/services/jar.service.ts
index e307cb549e2..80877c53eb0 100644
--- a/flink-runtime-web/web-dashboard/src/app/services/jar.service.ts
+++ b/flink-runtime-web/web-dashboard/src/app/services/jar.service.ts
@@ -76,7 +76,7 @@ export class JarService {
params = params.append('program-args', programArgs);
}
if (savepointPath) {
- params = params.append('savepointPath', programArgs);
+ params = params.append('savepointPath', savepointPath);
}
if (allowNonRestoredState) {
params = params.append('allowNonRestoredState', allowNonRestoredState);