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
Parallelize import download/read/unmarshal work while preserving ordered merge semantics
Replace global dependency download locking with per-cache locking and in-flight dedupe
Add regression coverage for concurrent imports, merge order, disabled imports, and shared git subpaths
Make URL dependency downloads context-aware and document download synchronization behavior
Signed-off-by: Ryan Swanson <ryan.swanson@loft.sh>
returnnil, fmt.Errorf("version is missing in import config %s", configPath)
93
-
} elseifversion!=configVersion {
94
-
returnnil, fmt.Errorf("import mismatch %s != %s. Import %s has different version than currently used devspace.yaml, please make sure the versions match between an import and the devspace.yaml using it", version, configVersion, configPath)
returnfmt.Errorf("version is missing in import config %s", configPath)
180
+
} elseifversion!=configVersion {
181
+
returnfmt.Errorf("import mismatch %s != %s. Import %s has different version than currently used devspace.yaml, please make sure the versions match between an import and the devspace.yaml using it", version, configVersion, configPath)
0 commit comments