Skip to content

Commit

Permalink
Merge pull request #70 from JupiterOne/disable-schema-validation
Browse files Browse the repository at this point in the history
Disable Schema Validation
  • Loading branch information
zemberdotnet authored Jun 7, 2022
2 parents 7d4fbf3 + d1e6ee8 commit 15d9f8c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/starbase/integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { StarbaseConfig, StarbaseIntegration } from './types';
import { executeWithLogging } from './process';

async function collectIntegrationData(integrationDirectory: string) {
await executeWithLogging(`yarn --cwd ${integrationDirectory} start;`);
await executeWithLogging(
`yarn --cwd ${integrationDirectory} start --disable-schema-validation;`,
);
}

async function writeIntegrationDataToNeo4j(
Expand Down

0 comments on commit 15d9f8c

Please sign in to comment.