We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 269055e commit da763c6Copy full SHA for da763c6
java/serving/src/main/java/feast/serving/config/RegistryConfig.java
@@ -61,7 +61,8 @@ RegistryFile registryFile(
61
case "file":
62
return new LocalRegistryFile(registryPath);
63
default:
64
- throw new RuntimeException("Registry storage %s is unsupported");
+ throw new RuntimeException(
65
+ String.format("Registry storage %s is unsupported", scheme.get()));
66
}
67
68
0 commit comments