Skip to content

Commit c5b4931

Browse files
committed
fix ci
1 parent a3e3338 commit c5b4931

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flex/engines/graph_db/database/wal/kafka_wal_utils.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ std::optional<std::vector<char>> parse_uri(const std::string& wal_uri) {
7171
topic = query.substr(0, top_pos);
7272
query = query.substr(top_pos + 1);
7373
} else {
74-
LOG(ERROR) << "Invalid uri: " << wal_uri;
75-
return std::nullopt;
74+
topic = query;
75+
query = "";
7676
}
7777
encoder.put_string(std::string("topic_name"));
7878
encoder.put_string(topic);

0 commit comments

Comments
 (0)