Skip to content

Commit 48c54a2

Browse files
authored
Merge pull request #793 from mbektas/fix-duplicate-env-discovery
fix duplicate environments dicovered by registry
2 parents 660dd58 + 7ee5a65 commit 48c54a2

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ jobs:
262262
overwrite: true
263263

264264
- name: Publish snap to the latest/edge channel in Snap Store
265-
if: matrix.cfg.platform == 'linux-64'
265+
if: matrix.cfg.platform == 'linux-64' && github.event.pull_request.head.repo.full_name == github.repository
266266
uses: snapcore/action-publish@v1
267267
env:
268268
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}

src/main/registry.ts

+25-24
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ export class Registry implements IRegistry, IDisposable {
283283
sort?: boolean
284284
): Promise<IPythonEnvironment[]> {
285285
let filteredEnvs = envs.filter(env => this._pathExistsSync(env.path));
286-
const uniqueEnvs = this._getUniqueObjects(filteredEnvs);
286+
const uniqueEnvs = this._getUniqueEnvs(filteredEnvs);
287287
const resolvedEnvs = await Promise.all(
288288
uniqueEnvs.map(async env => await this._resolveEnvironment(env.path))
289289
);
@@ -675,10 +675,10 @@ export class Registry implements IRegistry, IDisposable {
675675
}
676676

677677
private _updateEnvironments() {
678-
this._environments = [
678+
this._environments = this._getUniqueEnvs([
679679
...this._userSetEnvironments,
680680
...this._discoveredEnvironments
681-
];
681+
]);
682682
appData.discoveredPythonEnvs = JSON.parse(
683683
JSON.stringify(this._discoveredEnvironments)
684684
);
@@ -820,7 +820,7 @@ export class Registry implements IRegistry, IDisposable {
820820
[],
821821
allCondas
822822
);
823-
const uniqueCondaRoots = this._getUniqueObjects(flattenedCondaRoots);
823+
const uniqueCondaRoots = this._getUniquePythonPaths(flattenedCondaRoots);
824824

825825
return uniqueCondaRoots.map(condaRootEnvPath => {
826826
const path = pythonPathForEnvPath(condaRootEnvPath, true);
@@ -1110,29 +1110,30 @@ export class Registry implements IRegistry, IDisposable {
11101110
}
11111111
}
11121112

1113-
// Probably pretty slow, luckily won't ever be used on many values
1114-
private _getUniqueObjects<T, V>(arr: T[], keyFunction?: (value: T) => V) {
1115-
if (keyFunction) {
1116-
let mappedIndices = arr.map(keyFunction).map((keyValue, index, self) => {
1117-
return self.indexOf(keyValue);
1118-
});
1113+
private _getUniquePythonPaths(pythonPaths: string[]): string[] {
1114+
const uniquePythonPaths = new Set<string>();
11191115

1120-
let filteredIndices = mappedIndices.filter(
1121-
(mappedIndex, actualIndex, self) => {
1122-
return mappedIndex === actualIndex;
1123-
}
1124-
);
1116+
return pythonPaths.filter(pythonPath => {
1117+
if (!uniquePythonPaths.has(pythonPath)) {
1118+
uniquePythonPaths.add(pythonPath);
1119+
return true;
1120+
}
11251121

1126-
let filteredValues = filteredIndices.map(index => {
1127-
return arr[index];
1128-
});
1122+
return false;
1123+
});
1124+
}
11291125

1130-
return filteredValues;
1131-
} else {
1132-
return arr.filter((value, index, self) => {
1133-
return self.indexOf(value) === index;
1134-
});
1135-
}
1126+
private _getUniqueEnvs(envs: IPythonEnvironment[]): IPythonEnvironment[] {
1127+
const uniquePythonPaths = new Set<string>();
1128+
1129+
return envs.filter(env => {
1130+
if (!uniquePythonPaths.has(env.path)) {
1131+
uniquePythonPaths.add(env.path);
1132+
return true;
1133+
}
1134+
1135+
return false;
1136+
});
11361137
}
11371138

11381139
get ready(): Promise<void> {

0 commit comments

Comments
 (0)