Skip to content

Commit

Permalink
feat: Set default endpoint as null for Subscribers and Publishers
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelpri10 committed Feb 12, 2024
1 parent bf48660 commit 9b37268
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ public static final class Builder {
static final long DEFAULT_COMPRESSION_BYTES_THRESHOLD = 240L;

String topicName;
private String endpoint = PublisherStubSettings.getDefaultEndpoint();
private String endpoint = null;
private String universeDomain = null;

// Batching options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ public static final class Builder {
SubscriptionAdminSettings.defaultCredentialsProviderBuilder().build();
private Optional<ApiClock> clock = Optional.absent();
private int parallelPullCount = 1;
private String endpoint = SubscriberStubSettings.getDefaultEndpoint();
private String endpoint = null;
private String universeDomain = null;

Builder(String subscription, MessageReceiver receiver) {
Expand Down

0 comments on commit 9b37268

Please sign in to comment.