Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren committed Feb 27, 2024
1 parent 6248835 commit e482145
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/paradox/native-image.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Building Native Images

Building native images with Akka HTTP is supported out of the box for the event sourced journal, snapshot store and
durable state store and databases:
Building native images with Akka Persistence R2DBC is supported out of the box for the event sourced journal, snapshot store and
durable state store with the following databases:

* H2 (inmem and file)
* Postgres
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ akka.persistence.r2dbc.connection-factory = ${akka.persistence.r2dbc.h2}
akka.persistence.r2dbc.connection-factory = {
protocol = "file"
database = "/tmp/test-h2-database"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ akka.persistence.journal.plugin = "akka.persistence.r2dbc.journal"
akka.persistence.snapshot-store.plugin = "akka.persistence.r2dbc.snapshot"
akka.persistence.state.plugin = "akka.persistence.r2dbc.state"

akka.persistence.r2dbc.connection-factory = ${akka.persistence.r2dbc.postgres}
akka.persistence.r2dbc.connection-factory = ${akka.persistence.r2dbc.postgres}
2 changes: 1 addition & 1 deletion native-image-tests/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ akka.persistence.r2dbc.connection-factory = {
# overrides for default values from the 'akka.persistence.r2dbc.h2' config block
protocol = "mem"
database = "mydb"
}
}

0 comments on commit e482145

Please sign in to comment.