You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue seems to cause an error message like this for every file I drop in: [2023-03-05 00:21:16,144] ERROR [CsvSchemaSpoolDir|task-0] Failed to delete input.path sub-directory: /Users/mburnham/Projects/kafka-poc/data/input/data9.TXT (com.github.jcustenborder.kafka.connect.spooldir.InputFile:240)
I see the same error running the test suite as well. I'll try to create a PR to fix it and add a test.
odsock
added a commit
to odsock/kafka-connect-spooldir
that referenced
this issue
Mar 5, 2023
Existing (InputFile.java):
Path relative = inputFile.toPath().relativize(inputPath.toPath());
Fix (InputFile.java):
Path relative = inputFile.toPath().relativize(inputPath.getParentFile().toPath());
The text was updated successfully, but these errors were encountered: