Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ Build:
make build
```

*Note*: If you get a coverage error, please ensure you have up to date jacoco files by running a `clean` first, then run `package`, `install`, or `build` again.

Clean:

```shell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class AutonomousDbAutoConfiguration {
@Bean
@RefreshScope
@ConditionalOnMissingBean(AutonomousDb.class)
AutonomousDb getQueueImpl(DatabaseClient databaseClient) {
AutonomousDb getAutomousDbImpl(DatabaseClient databaseClient) {
return new AutonomousDbImpl(databaseClient);
}

Expand Down
Loading