Skip to content

Commit

Permalink
Fix dynamodb URI reference in README
Browse files Browse the repository at this point in the history
  • Loading branch information
etspaceman authored Apr 15, 2021
1 parent 3c219f1 commit 55f7150
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ object MyApp {
.httpClient(nettyClient)
.region(Region.US_EAST_1)
.credentialsProvider(AwsCreds.LocalCreds)
.endpointOverride(URI.create(s"https://localhost:8000")) // dynamodb-local port
.endpointOverride(URI.create(s"http://localhost:8000")) // dynamodb-local port
.build()

object KCLRecordProcessor extends ShardRecordProcessor {
Expand Down Expand Up @@ -285,4 +285,4 @@ object MyApp {

# Known issues
- Does not currently support Http2 requests (https://github.com/http4s/http4s/issues/4707)
- Does not currently support SubscribeToShard due to lack of push-promise support (https://github.com/http4s/http4s/issues/4624)
- Does not currently support SubscribeToShard due to lack of push-promise support (https://github.com/http4s/http4s/issues/4624)

0 comments on commit 55f7150

Please sign in to comment.