Skip to content

Commit 8e926e2

Browse files
committed
ok
1 parent c53f52b commit 8e926e2

File tree

4 files changed

+2
-7
lines changed

4 files changed

+2
-7
lines changed

ci/plugins/upload-failure-logs/hooks/post-command

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ if [ $BUILDKITE_COMMAND_EXIT_STATUS -ne 0 ]; then
1717
if [ -e "$PWD/connector-node.log" ]; then
1818
buildkite-agent artifact upload "$PWD/connector-node.log"
1919
fi
20-
fi
20+
fi

ci/scripts/build-simulation.sh

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ set -euo pipefail
55

66
source ci/scripts/common.sh
77

8-
exit 88
9-
108
echo "--- Generate RiseDev CI config"
119
cp ci/risedev-components.ci.env risedev-components.user.env
1210

ci/scripts/run-e2e-test.sh

-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ echo "--- e2e, $mode, streaming"
8282
RUST_LOG="info,risingwave_stream=info,risingwave_batch=info,risingwave_storage=info,risingwave_stream::common::table::state_table=warn" \
8383
cluster_start
8484

85-
exit 88
86-
8785
# Please make sure the regression is expected before increasing the timeout.
8886
sqllogictest -p 4566 -d dev './e2e_test/streaming/**/*.slt' --junit "streaming-${profile}"
8987
sqllogictest -p 4566 -d dev './e2e_test/backfill/sink/different_pk_and_dist_key.slt'

src/meta/src/manager/diagnose.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,7 @@ impl DiagnoseCommand {
171171
&mut row,
172172
worker_node.get_state().ok().map(|s| s.as_str_name()),
173173
);
174-
// FIXME:
175-
// row.add_cell(worker_node.parallelism().into());
174+
row.add_cell(worker_node.parallelism().into());
176175
try_add_cell(
177176
&mut row,
178177
worker_node.property.as_ref().map(|p| p.is_streaming),

0 commit comments

Comments
 (0)