Skip to content

Commit

Permalink
update config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kistoth committed Sep 19, 2024
1 parent e7b4119 commit 7260d52
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions superset/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1819,13 +1819,13 @@ class ExtraDynamicQueryFilters(TypedDict, total=False):


# WEBHOOK SECRET is a secret string between the Superset and the webhook endpoint.
# In the case where WEBHOOK_SECRET is filled, Superset adds an "X-Webhook-Signature"
# parameter to the header of the post call, which hashes the json data to be sent.
# The receiving party can verify that the party sending the webhook is the real
# sender by hashing the received json data and comparing it with the sending party's
# "X-Webhook-Signature" parameter. If the two parameters do not match,
# In the case where WEBHOOK_SECRET is filled, Superset adds an "X-Webhook-Signature"
# parameter to the header of the post call, which hashes the json data to be sent.
# The receiving party can verify that the party sending the webhook is the real
# sender by hashing the received json data and comparing it with the sending party's
# "X-Webhook-Signature" parameter. If the two parameters do not match,
# the receiving party may reject the call because the sender is not the supposed host.
WEBHOOK_SECRET='very_secret_token'
WEBHOOK_SECRET = "very_secret_token"


# -------------------------------------------------------------------
Expand Down

0 comments on commit 7260d52

Please sign in to comment.