nvent 1.0.0-alpha.6 → 1.0.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/module.json +1 -1
- package/dist/module.mjs +10 -4
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -847,20 +847,26 @@ function defaultIiiEngineConfig() {
|
|
|
847
847
|
function defaultStateAdapter(stateDir) {
|
|
848
848
|
return {
|
|
849
849
|
name: "kv",
|
|
850
|
-
config: { store_method: "file_based", file_path: "
|
|
850
|
+
config: { store_method: "file_based", file_path: "./.data/state_store" }
|
|
851
851
|
};
|
|
852
852
|
}
|
|
853
853
|
function defaultQueueAdapter(queueDir) {
|
|
854
854
|
return {
|
|
855
855
|
name: "builtin",
|
|
856
|
-
config: { store_method: "file_based", file_path: "
|
|
856
|
+
config: { store_method: "file_based", file_path: "./.data/queue_store" }
|
|
857
857
|
};
|
|
858
858
|
}
|
|
859
859
|
function defaultCronAdapter() {
|
|
860
|
-
return {
|
|
860
|
+
return {
|
|
861
|
+
name: "kv",
|
|
862
|
+
config: { store_method: "file_based", file_path: "./.data/cron_store" }
|
|
863
|
+
};
|
|
861
864
|
}
|
|
862
865
|
function defaultStreamAdapter() {
|
|
863
|
-
return {
|
|
866
|
+
return {
|
|
867
|
+
name: "kv",
|
|
868
|
+
config: { store_method: "file_based", file_path: "./.data/stream_store" }
|
|
869
|
+
};
|
|
864
870
|
}
|
|
865
871
|
function generateIiiConfigYaml(cfg) {
|
|
866
872
|
const workers = [];
|