Skip to content

Commit

Permalink
Fix code alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
auloin committed Dec 16, 2024
1 parent fe4a71f commit fa322c7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion content/en/documentation/pro/transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,12 @@ If you're using the Fluent API, you can configure a `ConnectionProvider` as foll
```java
JobRunrPro.configure()
// ...
.useStorageProvider(SqlStorageProviderFactory.using(dataSource, null, new ExposedTransactionAwareConnectionProvider(), new DatabaseOptions(false)))
.useStorageProvider(SqlStorageProviderFactory.using(
dataSource,
null,
new ExposedTransactionAwareConnectionProvider(),
new DatabaseOptions(false)
))
// ...
.initialize();
```
Expand Down

0 comments on commit fa322c7

Please sign in to comment.