[skip ci] pick a distinguishable name for fs owner

This commit is contained in:
Armin Schrenk
2025-10-15 17:27:12 +02:00
parent f3d4494d91
commit e1ff552f08

View File

@@ -151,7 +151,7 @@ public class Vault {
.withMaxCleartextNameLength(vaultSettings.maxCleartextFilenameLength.get()) //
.withVaultConfigFilename(Constants.VAULTCONFIG_FILENAME) //
.withFilesystemEventConsumer(this::consumeVaultEvent) //
.withOwner("cryptobot")
.withOwner(System.getProperty("user.name"))
.build();
return CryptoFileSystemProvider.newFileSystem(getPath(), fsProps);
}