Skip to content

Commit 456b553

Browse files
author
chenruotao
committed
make URIStatus Serializable
1 parent 3f21b2d commit 456b553

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/common/src/main/java/alluxio/client/file/URIStatus.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import com.google.common.base.MoreObjects;
2323
import com.google.common.base.Preconditions;
2424

25+
import java.io.Serializable;
2526
import java.util.List;
2627
import java.util.Map;
2728
import java.util.Objects;
@@ -37,7 +38,7 @@
3738
*/
3839
@PublicApi
3940
@ThreadSafe
40-
public class URIStatus {
41+
public class URIStatus implements Serializable {
4142
/** Information about this URI retrieved from Alluxio master. */
4243
private final FileInfo mInfo;
4344
/** Context associated with this URI, possibly set by other external engines (e.g., presto). */

0 commit comments

Comments
 (0)