Skip to content

Commit

Permalink
fix: update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
angelacorte authored and nicolasfara committed Apr 17, 2024
1 parent e3a64da commit 05e2f7d
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,11 @@ class OutboundMessage<ID : Any>(
fun addMessage(path: Path, message: SingleOutboundMessage<ID, *>) {
check(!defaults.containsKey(path)) {
"""
Aggregate alignment clash by multiple aligned calls originated at the same path: $path.
The most likely cause is an aggregate function call within a loop without proper manual alignment.
Aggregate alignment clash originated at the same path: $path.
Possible causes are:
- compiler plugin is not enabled,
- multiple aligned calls. The most likely cause is an aggregate function call within a loop without proper manual alignment.
If none of the above, please open an issue at https://github.com/Collektive/collektive/issues .
""".trimIndent()
}
defaults[path] = message.default
Expand Down

0 comments on commit 05e2f7d

Please sign in to comment.