The `HostIdResourceProvider` should instantiate an `HostIdResource`, not an `HostResource` (#13628)

This commit is contained in:
Cyrille Le Clerc 2025-04-02 07:32:19 +01:00 committed by GitHub
parent 63ab14a8db
commit 2dad6f5e5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ public final class HostIdResourceProvider implements ConditionalResourceProvider
@Override
public Resource createResource(ConfigProperties config) {
return HostResource.get();
return HostIdResource.get();
}
@Override