Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wasdennnoch committed Feb 2, 2024
1 parent 3c38bc4 commit de2b975
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions latte/src/main/java/gg/beemo/latte/broker/Subclients.kt
Expand Up @@ -91,15 +91,15 @@ class ProducerSubclient<T>(
"Cannot send null message for non-nullable type with key '$key' in topic '$topic'"
}
}
val strigifiedData = stringifyOutgoing(msg.value)
val stringifiedData = stringifyOutgoing(msg.value)
log.trace(
"Sending message {} with key '{}' in topic '{}' with value: {}",
msg.messageId,
key,
topic,
strigifiedData,
stringifiedData,
)
return connection.send(topic, key, strigifiedData, msg.headers)
return connection.send(topic, key, stringifiedData, msg.headers)
}

private fun stringifyOutgoing(data: T?): String {
Expand Down

0 comments on commit de2b975

Please sign in to comment.