This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
volumes: | |
caddy-data: | |
services: | |
caddy: | |
image: caddy:2.0.0 | |
container_name: caddy | |
ports: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ambiguous type name : The object public.regexp_matches generates a type my.package.structure.tables.RegexpMatches which conflicts with the existing type my.package.structure.tables.RegexpMatches on some operating systems. Use a custom generator strategy to disambiguate the types. | |
Ambiguous type name : The object public.regexp_split_to_table generates a type my.package.structure.tables.RegexpSplitToTable which conflicts with the existing type my.package.structure.tables.RegexpSplitToTable on some operating systems. Use a custom generator strategy to disambiguate the types. | |
Error while generating table public.regexp_matches | |
java.lang.NullPointerException | |
at org.jooq.util.GenerationUtil.getArrayBaseType(GenerationUtil.java:370) | |
at org.jooq.util.JavaGenerator.getType(JavaGenerator.java:5209) | |
at org.jooq.util.JavaGenerator.getJavaType(JavaGenerator.java:5165) | |
at org.jooq.util.JavaGenerator.getJavaType(JavaGenerator.java:5161) | |
at org.jooq.util.JavaGenerator.generate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main(args: Array<String>) { | |
println("Starting...") | |
val logFileDir = Paths.get("/some/path/to/a/directory") | |
val logDirWatcher: Observable<FileSystemEvent> = FileSystemWatcher | |
.newBuilder() | |
.addPath(logFileDir, FileSystemEventKind.ENTRY_MODIFY) | |
.withScheduler(Schedulers.io()) |