Skip to content

Commit

Permalink
[ISSUE #8931] Fix bug :BatchInstanceData cannot Serializable question (
Browse files Browse the repository at this point in the history
…#8940)

* [fix] fix BatchInstanceData cannot Serializable question

* fix update serialVersionUID auto generate
  • Loading branch information
wuchubuzai2018 authored Aug 12, 2022
1 parent 474b25d commit 21b624e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

package com.alibaba.nacos.naming.core.v2.pojo;

import java.io.Serializable;
import java.util.List;

/**
Expand All @@ -24,7 +25,9 @@
* @author : ChenHao26
* @Date: 2022/6/24 16:25
*/
public class BatchInstanceData {
public class BatchInstanceData implements Serializable {

private static final long serialVersionUID = 7845847904043098494L;

private List<String> namespaces;

Expand Down

0 comments on commit 21b624e

Please sign in to comment.