Skip to content

Commit

Permalink
[fix][client] Fix JSON deserialization for LookupData
Browse files Browse the repository at this point in the history
Signed-off-by: Zixuan Liu <[email protected]>
  • Loading branch information
nodece committed Feb 5, 2025
1 parent d69ab83 commit 1be3d96
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@
*/
package org.apache.pulsar.common.lookup.data;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.google.common.base.MoreObjects;

/**
* This class encapsulates lookup data.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class LookupData {
private String brokerUrl;
private String brokerUrlTls;
Expand Down

0 comments on commit 1be3d96

Please sign in to comment.