Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
do not use angle brackets (#2368)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurFlag authored Dec 18, 2023
1 parent 9dcdaa4 commit 98f34e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/products/flink/slack_notification.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
INSERT INTO SLACK_SINK
SELECT
'<CHANNEL_ID>',
'$CHANNEL_ID',
'host:' || CPU.hostname ||
' CPU: ' || cpu ||
' avg CPU value:' || TRY_CAST(usage_avg as string) ||
Expand Down
2 changes: 1 addition & 1 deletion code/products/flink/slack_sink.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ create table SLACK_SINK (
message STRING
) WITH (
'connector' = 'slack',
'token' = '<SLACK_TOKEN>'
'token' = '$SLACK_TOKEN'
)

0 comments on commit 98f34e1

Please sign in to comment.