Skip to content

Commit e1d85ac

Browse files
committed
fix: fixes for broken log aggregator
1 parent 969816e commit e1d85ac

File tree

26 files changed

+473
-168
lines changed

26 files changed

+473
-168
lines changed

Diff for: .github/workflows/kind.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ jobs:
4646
env:
4747
EXECUTABLE_PATH: github-actions-production
4848
DEBUG_KUBERNETES: true
49-
RAY_STARTUP_PROBE_INITIAL_DELAY_SECONDS: 30
49+
TEST_LOG_AGGREGATOR: true
5050
run: ./tests/kind/run.sh ${{ matrix.profile }}

Diff for: bin/codeflare

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ if [ -z "$GUIDEBOOK_STORE" ]; then
106106
elif [ -d "$HEADLESS"/../../store ]; then
107107
# production builds
108108
export GUIDEBOOK_STORE="$HEADLESS"/../../store
109-
elif [ -d "$HEADLESS"/store/dist/store ]; then
109+
elif [ -d "$HEADLESS"/store ]; then
110110
# docker builds
111111
export GUIDEBOOK_STORE="$HEADLESS"/store
112112
else

Diff for: deploy/log-aggregator/wait-for.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@ while [ ! -s "$F" ]; do
99
inotifywait -qq -e create -e modify "$D"
1010
done
1111

12-
echo "Error in watch"
13-
exit 1
12+
if [ ! -s "$F" ]; then
13+
echo "Error in watch"
14+
exit 1
15+
fi

0 commit comments

Comments
 (0)