Skip to content

Commit

Permalink
Disable ds-graph and process as graph type until it's performance can…
Browse files Browse the repository at this point in the history
… be improved significantly.
  • Loading branch information
bherr2 committed May 15, 2024
1 parent cf21ef9 commit ed8f4b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/enrichment/enrich.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export async function enrich(context) {
enrichCollectionMetadata(context);
enrichCollectionData(context);
break;
case 'ds-graph':
await enrichDatasetGraphData(context);
enrichDatasetGraphMetadata(context);
break;
// case 'ds-graph':
// await enrichDatasetGraphData(context);
// enrichDatasetGraphMetadata(context);
// break;
case 'vocab':
case 'graph':
case 'g':
Expand Down
6 changes: 3 additions & 3 deletions src/normalization/normalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ export async function normalize(context) {
normalizeCollectionData(context);
break;
case 'ds-graph':
await normalizeDatasetGraphData(context);
normalizeDatasetGraphMetadata(context);
break;
// await normalizeDatasetGraphData(context);
// normalizeDatasetGraphMetadata(context);
// break;
case 'vocab':
case 'graph':
case 'g':
Expand Down

0 comments on commit ed8f4b7

Please sign in to comment.