Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
add new name
  • Loading branch information
xxhZs committed Feb 22, 2024
1 parent 12b66e5 commit 2c83fe4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ci/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ services:

starrocks-fe-server:
container_name: starrocks-fe-server
image: starrocks/fe-ubuntu:latest
image: starrocks/fe-ubuntu:3.1.7
hostname: starrocks-fe-server
command:
/opt/starrocks/fe/bin/start_fe.sh
Expand All @@ -247,7 +247,7 @@ services:
retries: 30

starrocks-be-server:
image: starrocks/be-ubuntu:latest
image: starrocks/be-ubuntu:3.1.7
command:
- /bin/bash
- -c
Expand Down
4 changes: 2 additions & 2 deletions src/connector/src/sink/starrocks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ pub struct StarrocksCommon {
#[serde(rename = "starrocks.host")]
pub host: String,
/// The port to the MySQL server of StarRocks FE.
#[serde(rename = "starrocks.mysqlport")]
#[serde(rename = "starrocks.mysqlport", alias = "starrocks.query_port")]
pub mysql_port: String,
/// The port to the HTTP server of StarRocks FE.
#[serde(rename = "starrocks.httpport")]
#[serde(rename = "starrocks.httpport", alias = "starrocks.http_port")]
pub http_port: String,
/// The user name used to access the StarRocks database.
#[serde(rename = "starrocks.user")]
Expand Down

0 comments on commit 2c83fe4

Please sign in to comment.