Skip to content

Commit

Permalink
Empty commit to trigger build (#449)
Browse files Browse the repository at this point in the history
* Empty commit to trigger build

* Empty commit to trigger build
  • Loading branch information
psisoyev authored Dec 11, 2024
1 parent 46d8d8b commit d297e1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/src/main/scala/cr/pulsar/Consumer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -242,5 +242,4 @@ object Consumer {
deadLetterPolicy = None
)
}

}
1 change: 1 addition & 0 deletions function/src/test/scala/cr/pulsar/FunctionInput.scala
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ object FunctionInput {
): S = ???
override def getPulsarAdmin: PulsarAdmin = ???
override def newOutputRecordBuilder[O](schema: Schema[O]): FunctionRecordBuilder[O] = ???
override def fatal(t: Throwable): Unit = ???
}

def input[A](seq: Seq[A]): util.Collection[JavaRecord[A]] = {
Expand Down
4 changes: 2 additions & 2 deletions function/src/test/scala/cr/pulsar/WindowContextSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ object WindowContextSuite extends SimpleIOSuite with Checkers {
override def getOutputSchemaType: String = ???
override def getLogger: Logger = ???
override def incrCounter(key: String, amount: Long): Unit = {
counters.put(key, getCounter(key) + amount)
val _ = counters.put(key, getCounter(key) + amount)
()
}

Expand Down Expand Up @@ -244,7 +244,7 @@ object WindowContextSuite extends SimpleIOSuite with Checkers {
override def incrCounter(key: String, amount: Long): Unit = ???
override def getCounter(key: String): Long = ???
override def putState(key: String, value: ByteBuffer): Unit = {
state.put(key, value)
val _ = state.put(key, value)
()
}
override def getState(key: String): ByteBuffer = state.getOrElse(key, null)
Expand Down

0 comments on commit d297e1b

Please sign in to comment.