mirror of https://github.com/apache/druid.git
remove space typo
This commit is contained in:
parent
9a8f22f9ea
commit
28b28733ae
|
@ -48,6 +48,7 @@ export const ShowJson = React.memo(function ShowJson(props: ShowJsonProps) {
|
|||
});
|
||||
|
||||
const jsonValue = jsonState.data || '';
|
||||
|
||||
return (
|
||||
<div className="show-json">
|
||||
<div className="top-actions">
|
||||
|
|
|
@ -203,7 +203,7 @@ export const COMPACTION_CONFIG_FIELDS: Field<CompactionConfig>[] = [
|
|||
!deepGet(t, 'tuningConfig.partitionsSpec.maxRowsPerSegment'),
|
||||
info: (
|
||||
<>
|
||||
<p>Maximum number of rows to include in a partition.</p>{' '}
|
||||
<p>Maximum number of rows to include in a partition.</p>
|
||||
<p>
|
||||
Note that either <Code>targetRowsPerSegment</Code> or <Code>maxRowsPerSegment</Code> will
|
||||
be used to find the best partitioning. Leave blank to show all properties.
|
||||
|
|
|
@ -3072,6 +3072,7 @@ export class LoadDataView extends React.PureComponent<LoadDataViewProps, LoadDat
|
|||
const resp = await Api.instance.get(
|
||||
`/druid/indexer/v1/supervisor/${Api.encodePath(initSupervisorId)}`,
|
||||
);
|
||||
console.log('resp.data', resp.data);
|
||||
this.updateSpec(cleanSpec(resp.data));
|
||||
this.setState({ continueToSpec: true });
|
||||
this.updateStep('spec');
|
||||
|
@ -3152,6 +3153,7 @@ export class LoadDataView extends React.PureComponent<LoadDataViewProps, LoadDat
|
|||
const { spec, submitting } = this.state;
|
||||
if (submitting) return;
|
||||
|
||||
console.log('spec', spec);
|
||||
this.setState({ submitting: true });
|
||||
if (isTask(spec)) {
|
||||
let taskResp: any;
|
||||
|
|
Loading…
Reference in New Issue