This is an automated email from the ASF dual-hosted git repository.
chesnay 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 560b4612735 [FLINK-30525][web] Remove broken reference to env
variables field
560b4612735 is described below
commit 560b4612735a2b9cd3b5db88adf5cb223e85535b
Author: Weihua Hu <[email protected]>
AuthorDate: Fri Jan 13 23:00:38 2023 +0800
[FLINK-30525][web] Remove broken reference to env variables field
---
.../configuration-cards/configuration-cards.component.html | 7 -------
.../web-dashboard/src/app/interfaces/configuration.ts | 1 -
2 files changed, 8 deletions(-)
diff --git
a/flink-runtime-web/web-dashboard/src/app/components/configuration-cards/configuration-cards.component.html
b/flink-runtime-web/web-dashboard/src/app/components/configuration-cards/configuration-cards.component.html
index eaa91780ea7..687e4481123 100644
---
a/flink-runtime-web/web-dashboard/src/app/components/configuration-cards/configuration-cards.component.html
+++
b/flink-runtime-web/web-dashboard/src/app/components/configuration-cards/configuration-cards.component.html
@@ -23,13 +23,6 @@
></flink-table-display>
</nz-card>
-<nz-card nzType="inner" nzTitle="Environment" [nzLoading]="loading">
- <flink-table-display
- *ngIf="environmentInfo && environmentInfo.environment.length; else
noDataTemplate"
- [listOfData]="environmentInfo.environment"
- ></flink-table-display>
-</nz-card>
-
<nz-card nzType="inner" nzTitle="JVM" [nzLoading]="loading">
<flink-table-display
*ngIf="environmentInfo; else noDataTemplate"
diff --git
a/flink-runtime-web/web-dashboard/src/app/interfaces/configuration.ts
b/flink-runtime-web/web-dashboard/src/app/interfaces/configuration.ts
index f200a3b7c1f..dac450e3c1c 100644
--- a/flink-runtime-web/web-dashboard/src/app/interfaces/configuration.ts
+++ b/flink-runtime-web/web-dashboard/src/app/interfaces/configuration.ts
@@ -23,7 +23,6 @@ export interface JvmInfo {
}
export interface EnvironmentInfo {
- environment: Array<{ key: string; value: string }>;
jvm: JvmInfo;
classpath: string[];
}