Skip to content

Commit

Permalink
update catalog filesystem event message
Browse files Browse the repository at this point in the history
  • Loading branch information
vordimous committed Jun 3, 2024
1 parent c45effe commit 74af1f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ telemetry:
- qname: test.catalog0
id: catalog.filesystem.file.not.found
name: CATALOG_FILESYSTEM_FILE_NOT_FOUND
message: asyncapi/kafka.yaml
message: Unable to find file at (asyncapi/kafka.yaml) on the host filesystem.
catalogs:
catalog0:
type: filesystem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public String format(
case FILE_NOT_FOUND:
{
FilesystemFileNotFoundExFW ex = extension.fileNotFound();
result = String.format("%s", asString(ex.location()));
result = String.format("Unable to find file at (%s) on the host filesystem.", asString(ex.location()));
break;
}
}
Expand Down

0 comments on commit 74af1f5

Please sign in to comment.