Skip to content

Commit 3d931ca

Browse files
committed
fix: Always set O11Y to off after removing all related components
1 parent 8588e5d commit 3d931ca

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

all-in-one/scripts/base.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,16 @@ case $MODE in
4040
esac
4141
echo "Mode=$MODE"
4242

43+
# Always disable O11Y since we have removed all related components from the image.
44+
# TODO: Support O11Y again.
45+
O11Y=off
46+
4347
case $O11Y in
4448
true|TRUE|on|ON|yes|YES)
4549
O11Y=on
4650
;;
4751
*)
48-
# Default to full mode
52+
# Default to off
4953
O11Y=off
5054
;;
5155
esac

0 commit comments

Comments
 (0)