Skip to content

Commit

Permalink
[MINOR] FlinkStateBackendConverter add more exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
sandyfog committed Jun 9, 2022
1 parent 1e9cc02 commit e8c48f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public StateBackend convert(String value) throws ParameterException {
case "hashmap" : return new HashMapStateBackend();
case "rocksdb" : return new EmbeddedRocksDBStateBackend();
default:
throw new HoodieException(String.format("Unknown flink state backend %s. support only hashmap and rocksdb by now", value));
throw new HoodieException(String.format("Unknown flink state backend %s. Supports only hashmap and rocksdb by now", value));
}
}
}

0 comments on commit e8c48f1

Please sign in to comment.