Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: linage null problem #2640

Merged
merged 2 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Spotless Apply
  • Loading branch information
leechor authored and github-actions[bot] committed Dec 13, 2023
commit d0009c86819595561fb5d186b0303cf0dc334024
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

package org.dinky.executor;

import cn.hutool.core.lang.Opt;
import org.dinky.assertion.Asserts;
import org.dinky.classloader.DinkyClassLoader;

Expand All @@ -33,6 +32,7 @@
import java.util.stream.Stream;

import cn.hutool.core.io.FileUtil;
import cn.hutool.core.lang.Opt;

/**
* LocalStreamExecutor
Expand Down
2 changes: 1 addition & 1 deletion dinky-web/src/pages/Metrics/Job/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
*
*/

import FlinkChart from '@/components/Flink/FlinkChart';
import { ChartData, JobMetrics, MetricsLayout, SubTask, Task } from '@/pages/Metrics/Job/data';
import {
buildMetricsList,
Expand All @@ -30,7 +31,6 @@ import { l } from '@/utils/intl';
import { ProCard, ProFormSelect } from '@ant-design/pro-components';
import { Button, Input, Row } from 'antd';
import { useEffect, useState } from 'react';
import FlinkChart from "@/components/Flink/FlinkChart";

const getJobMetrics = async (job: JobMetrics) => {
const url =
Expand Down
Loading