Skip to content

Commit

Permalink
Merge branch 'enhancement/sqs-consumer' of github.com:Netflix/dispatc…
Browse files Browse the repository at this point in the history
…h into enhancement/sqs-consumer
  • Loading branch information
kevgliss committed Sep 29, 2023
2 parents 9a51975 + e364119 commit e984cc6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
4 changes: 2 additions & 2 deletions requirements-base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ frozenlist==1.4.0
# aiosignal
google-api-core==2.11.1
# via google-api-python-client
google-api-python-client==2.100.0
google-api-python-client==2.101.0
# via -r requirements-base.in
google-auth==2.22.0
# via
Expand Down Expand Up @@ -235,7 +235,7 @@ oauthlib[signedtoken]==3.2.2
# atlassian-python-api
# jira
# requests-oauthlib
openai==0.28.0
openai==0.28.1
# via -r requirements-base.in
packaging==23.1
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ python-dateutil==2.8.2
# via faker
pyyaml==6.0.1
# via pre-commit
ruff==0.0.290
ruff==0.0.291
# via -r requirements-dev.in
six==1.16.0
# via
Expand Down
3 changes: 1 addition & 2 deletions src/dispatch/plugins/dispatch_slack/feedback/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,6 @@ def oncall_shift_feedback_input(
initial_value=initial_value,
multiline=True,
placeholder="How would you describe your experience?",
optional=True,
),
label=label,
**kwargs,
Expand Down Expand Up @@ -382,7 +381,7 @@ def handle_oncall_shift_feedback_submission_event(

ack_oncall_shift_feedback_submission_event(ack=ack)

feedback = form_data.get(ServiceFeedbackNotificationBlockIds.feedback_input, "")
feedback = form_data.get(ServiceFeedbackNotificationBlockIds.feedback_input)
rating = form_data.get(ServiceFeedbackNotificationBlockIds.rating_select, {}).get("value")

# metadata is organization_slug|project_id|schedule_id|shift_end_at|reminder_id
Expand Down
28 changes: 14 additions & 14 deletions src/dispatch/static/dispatch/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e984cc6

Please sign in to comment.