You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Encryption key for the EncryptedMetadataManager has not been set. Setting it for the production environments is necessary. You can find more in the documentation: https://docs.saleor.io/docs/3.x/developer/extending/apps/developing-apps/app-sdk/settings-manager"
45
+
"Encryption key for the EncryptedMetadataManager has not been set. Setting it for the production environments is necessary. You can find more in the documentation: https://docs.saleor.io/docs/3.x/developer/extending/apps/developing-apps/app-sdk/settings-manager",
Copy file name to clipboardexpand all lines: src/settings-manager/encrypted-metadata-manager.ts
+2-2
Original file line number
Diff line number
Diff line change
@@ -80,11 +80,11 @@ export class EncryptedMetadataManager implements SettingsManager {
80
80
if(process.env.NODE_ENV==="production"){
81
81
console.error("Can't start the application without the secret key.");
82
82
thrownewError(
83
-
"Encryption key for the EncryptedMetadataManager has not been set. Setting it for the production environments is necessary. You can find more in the documentation: https://docs.saleor.io/docs/3.x/developer/extending/apps/developing-apps/app-sdk/settings-manager"
83
+
"Encryption key for the EncryptedMetadataManager has not been set. Setting it for the production environments is necessary. You can find more in the documentation: https://docs.saleor.io/docs/3.x/developer/extending/apps/developing-apps/app-sdk/settings-manager",
84
84
);
85
85
}
86
86
console.warn(
87
-
"WARNING: Encrypted Metadata Manager encryption key has not been set. For production deployments, it need's to be set"
87
+
"WARNING: Encrypted Metadata Manager encryption key has not been set. For production deployments, it need's to be set",
88
88
);
89
89
console.warn("Using placeholder value for the development.");
0 commit comments