Skip to content

Commit

Permalink
pass client in
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin67 committed Feb 25, 2024
1 parent 6c2e1d3 commit 9f0fb61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inngest-core/src/main/kotlin/com/inngest/ktor/Route.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fun Route.serve(
fnList: List<InngestFunction>,
) {
val fnMap = fnList.associateBy { it.id() }
val comm = CommHandler(functions = fnMap)
val comm = CommHandler(functions = fnMap, client)

route(path) {
get("") {
Expand Down

0 comments on commit 9f0fb61

Please sign in to comment.