diff --git a/core/common/src/main/java/alluxio/conf/PropertyKey.java b/core/common/src/main/java/alluxio/conf/PropertyKey.java index 4b5604b5be32..bef9aa4a72d3 100755 --- a/core/common/src/main/java/alluxio/conf/PropertyKey.java +++ b/core/common/src/main/java/alluxio/conf/PropertyKey.java @@ -3393,43 +3393,6 @@ public String toString() { .setConsistencyCheckLevel(ConsistencyCheckLevel.WARN) .setScope(Scope.WORKER) .build(); - /** - * @deprecated use {@link #FUSE_MOUNT_ALLUXIO_PATH} instead - */ - @Deprecated - public static final PropertyKey WORKER_FUSE_MOUNT_ALLUXIO_PATH = - stringBuilder(Name.WORKER_FUSE_MOUNT_ALLUXIO_PATH) - .setDefaultValue("/") - .setDescription(format("The Alluxio path to mount to the given " - + "Fuse mount point configured by %s in this worker.", - Name.WORKER_FUSE_MOUNT_POINT)) - .setConsistencyCheckLevel(ConsistencyCheckLevel.WARN) - .setScope(Scope.WORKER) - .build(); - /** - * @deprecated use {@link #FUSE_MOUNT_OPTIONS} instead - */ - @Deprecated - public static final PropertyKey WORKER_FUSE_MOUNT_OPTIONS = - listBuilder(Name.WORKER_FUSE_MOUNT_OPTIONS) - .setDescription("The platform specific Fuse mount options " - + "to mount the given Fuse mount point. " - + "If multiple mount options are provided, separate them with comma.") - .setConsistencyCheckLevel(ConsistencyCheckLevel.WARN) - .setScope(Scope.WORKER) - .build(); - /** - * @deprecated use {@link #FUSE_MOUNT_POINT} instead - */ - @Deprecated - public static final PropertyKey WORKER_FUSE_MOUNT_POINT = - stringBuilder(Name.WORKER_FUSE_MOUNT_POINT) - .setDefaultValue("/mnt/alluxio-fuse") - .setDescription("The absolute local filesystem path that this worker will " - + "mount Alluxio path to.") - .setConsistencyCheckLevel(ConsistencyCheckLevel.WARN) - .setScope(Scope.WORKER) - .build(); public static final PropertyKey WORKER_STARTUP_TIMEOUT = durationBuilder(Name.WORKER_STARTUP_TIMEOUT) .setDefaultValue("10min")