Skip to content

Commit

Permalink
Fix bug where sometimes standard concept map generation times out.
Browse files Browse the repository at this point in the history
  • Loading branch information
james-cockayne-ad committed Jan 9, 2025
1 parent bd4b6ba commit 53dba9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OmopTransformer/ConceptMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public async Task RenderConceptMap(CancellationToken cancellationToken)

await connection.OpenAsync(cancellationToken);

await connection.ExecuteAsync("omop_staging.generate_concept_code_map");
await connection.ExecuteLongTimeoutAsync("omop_staging.generate_concept_code_map");
}
}

0 comments on commit 53dba9a

Please sign in to comment.