Skip to content

Commit

Permalink
Update backend/src/main/java/com/bakdata/conquery/models/index/IndexC…
Browse files Browse the repository at this point in the history
…reationException.java


corrects failure message

Co-authored-by: awildturtok <[email protected]>
  • Loading branch information
thoniTUB and awildturtok authored Aug 6, 2024
1 parent 6bb4388 commit ab91aa6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
public class IndexCreationException extends Exception {

public IndexCreationException(IndexKey<?> key, Throwable cause) {
super(String.format("Unable to build index from index configuration: %s)", key), cause);
super(String.format("Unable to build index from index configuration: %s", key), cause);
}
}

0 comments on commit ab91aa6

Please sign in to comment.