Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
clairelin135 committed Jan 17, 2024
1 parent 852f133 commit 1f6bf8a
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ export const buildLiveDataForNode = (
};

export function tokenForAssetKey(key: {path: string[]}) {
console.log(key);
return key.path.join('/');
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ const LaunchAssetChoosePartitionsDialogBody = ({
const assetHealthLoading = assetHealth.length === 0;

const displayedHealth = React.useMemo(() => {
console.log(JSON.stringify({assetHealth}, null, 2));
if (target.type === 'pureAll') {
return mergedAssetHealth([]);
}
Expand Down Expand Up @@ -429,7 +428,7 @@ const LaunchAssetChoosePartitionsDialogBody = ({
if (target.type === 'pureWithAnchorAsset') {
notices.push(
`Dagster will materialize all partitions downstream of the ` +
`selected partitions for the selected assets, using separate runs
`selected partitions for the selected assets, using separate runs
${backfillPolicyVaries ? `and obeying backfill policies.` : `as needed.`}`,
);
} else if (backfillPolicyVaries) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import {PARTITION_HEALTH_QUERY} from '../usePartitionHealthData';
describe('launchAssetChoosePartitionsDialog', () => {
it('Adding a dynamic partition when multiple assets selected', async () => {
const errorMock = jest.fn();
// jest.spyOn(console, 'error').mockImplementation(() => errorMock);

const assetA = buildAsset('asset_a', ['test']);
const assetB = buildAsset('asset_b', ['test']);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ export const DimensionRangeWizard = ({

const [showCreatePartition, setShowCreatePartition] = React.useState(false);

console.log('isDynamic', isDynamic);
return (
<>
<Box flex={{direction: 'row', alignItems: 'center', gap: 8}} padding={{vertical: 4}}>
Expand Down

0 comments on commit 1f6bf8a

Please sign in to comment.