Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

[Large Internal Product] Oracle config builders must be public #4640

Merged
merged 2 commits into from
Mar 5, 2020
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
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,10 @@ private String connectionDataString() {
+ " One needs to be specified.");
}

static class Builder extends ImmutableOracleConnectionConfig.Builder {}
public static class Builder extends ImmutableOracleConnectionConfig.Builder {}

@Value.Immutable
interface ServiceNameConfiguration {
public interface ServiceNameConfiguration {
String serviceName();
String namespaceOverride();

Expand Down
5 changes: 5 additions & 0 deletions changelog/@unreleased/pr-4640.v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type: fix
fix:
description: Fix bug that prevented programmatic creation of Oracle connection configuration.
links:
- https://github.com/palantir/atlasdb/pull/4640