Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_test_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Event File
path: ${{ github.event_path }}
2 changes: 1 addition & 1 deletion src/ketu/async/sink.clj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
; Just in case of a production issue and generic error handling wasn't implemented yet.
(fn [record callback]
(try
(producer/send! producer record callback)
@(producer/send! producer record callback)
(catch TimeoutException e
(log/error logger "[sink={}] Send timeout'" sink-name e))
(catch Exception e
Expand Down