Skip to content

Commit 1134621

Browse files
committed
fix everything
1 parent e53d64b commit 1134621

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,11 @@ clean:
5656
rm -rf packages/slackBotFunction/.coverage
5757
rm -rf packages/slackBotFunction/.dependencies
5858
rm -rf packages/syncKnowledgeBaseFunction/coverage
59-
rm -rf packages/syncKnowledgeBaseFunction/.coverage
60-
rm -rf packages/syncKnowledgeBaseFunction/.dependencies
59+
rm -rf .dependencies/
6160
rm -rf cdk.out
6261
rm -rf .build
62+
rm -rf .local_config
63+
rm -rf cfn_guard_output
6364
find . -name '.pytest_cache' -type d -prune -exec rm -rf '{}' +
6465

6566
deep-clean: clean
@@ -101,7 +102,7 @@ cdk-deploy: guard-STACK_NAME
101102
--context slackSigningSecret=$$SLACK_SIGNING_SECRET
102103
cdk-synth:
103104
mkdir -p .dependencies/slackBotFunction
104-
mkdir -p .dependencies/SyncKnowledgeBaseFunction
105+
mkdir -p .dependencies/syncKnowledgeBaseFunction
105106
mkdir -p .local_config
106107
STACK_NAME=epsam \
107108
COMMIT_ID=undefined \

packages/slackBotFunction/app/utils/handler_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def respond_with_eyes(bot_token, event):
6363
channel = event["channel"]
6464
ts = event["ts"]
6565
try:
66+
logger.debug("Responding with eyes")
6667
client.reactions_add(channel=channel, timestamp=ts, name="eyes")
6768
except Exception:
6869
logger.error("Failed to respond with eyes", extra={"error": traceback.format_exc()})

0 commit comments

Comments
 (0)