Skip to content

Commit

Permalink
apply fix to telegram consumer component
Browse files Browse the repository at this point in the history
  • Loading branch information
macielti committed Nov 30, 2023
1 parent 0ca997c commit 69a5be5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ of [keepachangelog.com](http://keepachangelog.com/).

## [Unreleased]

## [24.49.48] - 2023-11-30

## Fixed

- Fixed bug on `TelegramConsumer` component.

## [24.49.47] - 2023-11-28

## Added
Expand Down Expand Up @@ -647,7 +653,9 @@ of [keepachangelog.com](http://keepachangelog.com/).

- Add `loose-schema` function.

[Unreleased]: https://github.com/macielti/common-clj/compare/v24.49.47...HEAD
[Unreleased]: https://github.com/macielti/common-clj/compare/v24.49.48...HEAD

[24.49.48]: https://github.com/macielti/common-clj/compare/v24.49.47...v24.49.48

[24.49.47]: https://github.com/macielti/common-clj/compare/v24.48.47...v24.49.47

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject net.clojars.macielti/common-clj "24.49.47"
(defproject net.clojars.macielti/common-clj "24.49.48"
:description "Just common Clojure code that I use across projects"
:url "https://github.com/macielti/common-clj"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/common_clj/component/telegram/consumer.clj
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
(doseq [update updates]
(consume-update! update consumers components))))

(defrecord TelegramConsumer [config http-client prometheus datomic jobs consumers telegram-producer]
(defrecord TelegramConsumer [config http-client prometheus datomic jobs telegram-producer consumers]
component/Lifecycle
(start [component]
(let [{{:keys [telegram] :as config-content} :config} config
Expand Down

0 comments on commit 69a5be5

Please sign in to comment.