Skip to content

Commit

Permalink
Avoid quarkus.uuid reported as unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez committed Jan 13, 2025
1 parent f2d0581 commit 80a903e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ private static class UuiConfigSource implements ConfigSource {

@Override
public Set<String> getPropertyNames() {
return Set.of(QUARKUS_UUID);
// Not listed to avoid being reported as unknown. It can't be mapped either, because config will eagerly access it.
return Set.of();
}

@Override
Expand Down

0 comments on commit 80a903e

Please sign in to comment.