Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhoule committed Aug 31, 2023
1 parent 2ef68e6 commit 381821e
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,18 @@ impl QueryExecutor for ExecutorProcess {
registered_js_connector(NodeDrivers.datamodel_provider())
}
}

#[async_trait]
impl Connector for NodeDrivers {
async fn get_connection(&self) -> crate::Result<Box<dyn Connection + Send + Sync>> {
todo!();
}

fn name(&self) -> &'static str {
self.datamodel_provider()
}

fn should_retry_on_transient_error(&self) -> bool {
false
}
}

0 comments on commit 381821e

Please sign in to comment.