diff --git a/inngest-core/src/main/kotlin/com/inngest/Comm.kt b/inngest-core/src/main/kotlin/com/inngest/Comm.kt index 8f401761..bfa3d17f 100644 --- a/inngest-core/src/main/kotlin/com/inngest/Comm.kt +++ b/inngest-core/src/main/kotlin/com/inngest/Comm.kt @@ -48,8 +48,10 @@ class CommHandler(val functions: HashMap) { private fun getHeaders(): Map { return mapOf( "Content-Type" to "application/json", - "x-inngest-sdk" to "inngest-kt:v0.0.1", // TODO - Get this from the build - "x-inngest-framework" to "ktor", // TODO - Pull this from options + // TODO - Get this from the build + "x-inngest-sdk" to "inngest-kt:v0.0.1", + // TODO - Pull this from options + "x-inngest-framework" to "ktor", ) } diff --git a/inngest-core/src/main/kotlin/com/inngest/Function.kt b/inngest-core/src/main/kotlin/com/inngest/Function.kt index c34243a0..cece458f 100644 --- a/inngest-core/src/main/kotlin/com/inngest/Function.kt +++ b/inngest-core/src/main/kotlin/com/inngest/Function.kt @@ -159,8 +159,8 @@ open class InngestFunction( id = "step", name = "step", retries = - // TODO - Pull from FunctionOptions mapOf( + // TODO - Pull from FunctionOptions "attempts" to 3, ), runtime =