-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Remove pulsar-client-admin-api dependency : pulsar-common #10774
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
merlimat
merged 62 commits into
apache:master
from
merlimat:9640-remove-client-admin-api-dependency-pulsar-common
Jun 2, 2021
Merged
Remove pulsar-client-admin-api dependency : pulsar-common #10774
merlimat
merged 62 commits into
apache:master
from
merlimat:9640-remove-client-admin-api-dependency-pulsar-common
Jun 2, 2021
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…remove-client-admin-api-dependency-pulsar-common # Conflicts: # managed-ledger/src/test/java/org/apache/bookkeeper/mledger/impl/OffloadPrefixTest.java # pulsar-client-admin-api/src/main/java/org/apache/pulsar/client/admin/PulsarAdminException.java # pulsar-client-admin-api/src/main/java/org/apache/pulsar/common/policies/data/ClusterData.java
…remove-client-admin-api-dependency-pulsar-common
…remove-client-admin-api-dependency-pulsar-common # Conflicts: # pulsar-client-admin-api/src/main/java/org/apache/pulsar/common/policies/data/TransactionCoordinatorStatus.java # pulsar-common/src/main/java/org/apache/pulsar/common/policies/data/TransactionCoordinatorStats.java # pulsar-common/src/main/java/org/apache/pulsar/common/policies/data/TransactionCoordinatorStatus.java # tests/integration/src/test/java/org/apache/pulsar/tests/integration/functions/PulsarFunctionsTest.java
…admin-api-dependency-pulsar-common
sijie
approved these changes
Jun 1, 2021
codelipenghui
approved these changes
Jun 1, 2021
freeznet
approved these changes
Jun 2, 2021
…admin-api-dependency-pulsar-common
cee3d39 to
746d6fe
Compare
BewareMyPower
added a commit
to streamnative/kop
that referenced
this pull request
Jun 8, 2021
### Motivation apache/pulsar#10818 and apache/pulsar#10774 introduced API changes to `ClusterDataImpl` and `TenantInfoImpl`. ### Modifications - Fix current code for new interface. - Remove unused setup code.
yangl
pushed a commit
to yangl/pulsar
that referenced
this pull request
Jun 23, 2021
* remove gson from admin api Topics.java * Bookies.java * Brokers.java * BrokerStats.java * fix PulsarAdminException * Clusters.java * Tenants.java * minor fix on ResourceGroups * Namespaces.java & OffloadPolicies * temp remove JsonProperty in OffloadPolicies * Topics & NonPersistentTopics * ResourceQuotas with MixIn class * Functions * Sources.java * Sinks.java * Schemas.java * resolve checkstyle * minor fix * Transactions.java * fix stylecheck * set ObjectMapper module * fix ci * fix PulsarAdminException * remove gson * remove swagger * merge master * remove swagger * remove io.swagger * remove commons-lang3 * use Objects.requireNonNull * remove commons-lang3 * fix interface mapping * fix ci * extract OffloadPoliciesInterface * extract FunctionStats interfaces * fix unit test * fix shaded class * add object mapper mixin tests * fix ci * fix admin exception ci error * UpdateOptions * AutoFailoverPolicyData * BrokerNamespaceIsolationData * ClusterData * FailureDomain * FunctionInstanceStats * NamespaceIsolationData * OffloadPolicies * TenantInfo * FunctionStats * fix stylecheck * Fixed interface * Fixed ClusterData equals method * Fixed merge issue * Fixed another merge issue * Fixed test issue after merge Co-authored-by: Rui Fu <freelz@gmail.com>
bharanic-dev
pushed a commit
to bharanic-dev/pulsar
that referenced
this pull request
Mar 18, 2022
* remove gson from admin api Topics.java * Bookies.java * Brokers.java * BrokerStats.java * fix PulsarAdminException * Clusters.java * Tenants.java * minor fix on ResourceGroups * Namespaces.java & OffloadPolicies * temp remove JsonProperty in OffloadPolicies * Topics & NonPersistentTopics * ResourceQuotas with MixIn class * Functions * Sources.java * Sinks.java * Schemas.java * resolve checkstyle * minor fix * Transactions.java * fix stylecheck * set ObjectMapper module * fix ci * fix PulsarAdminException * remove gson * remove swagger * merge master * remove swagger * remove io.swagger * remove commons-lang3 * use Objects.requireNonNull * remove commons-lang3 * fix interface mapping * fix ci * extract OffloadPoliciesInterface * extract FunctionStats interfaces * fix unit test * fix shaded class * add object mapper mixin tests * fix ci * fix admin exception ci error * UpdateOptions * AutoFailoverPolicyData * BrokerNamespaceIsolationData * ClusterData * FailureDomain * FunctionInstanceStats * NamespaceIsolationData * OffloadPolicies * TenantInfo * FunctionStats * fix stylecheck * Fixed interface * Fixed ClusterData equals method * Fixed merge issue * Fixed another merge issue * Fixed test issue after merge Co-authored-by: Rui Fu <freelz@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
#9640 Making the admin API POJOs into interfaces.
Resubmitting #10697 by @freeznet, just fixing conflicts with master here.