Skip to content

Commit 2df86b7

Browse files
eamodiod13
authored andcommitted
Removes debugging wait 🤦‍♂️
1 parent 781104c commit 2df86b7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/env/node/git/sub-providers/commits.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ import { filterMap, first, join, last, some } from '../../../../system/iterable'
5454
import { Logger } from '../../../../system/logger';
5555
import { getLogScope } from '../../../../system/logger.scope';
5656
import { isFolderGlob, stripFolderGlob } from '../../../../system/path';
57-
import { wait } from '../../../../system/promise';
5857
import type { Cancellable } from '../../../../system/promiseCache';
5958
import { PromiseCache } from '../../../../system/promiseCache';
6059
import { maybeStopWatch } from '../../../../system/stopwatch';
@@ -246,8 +245,6 @@ export class CommitsGitSubProvider implements GitCommitsSubProvider {
246245
// Sort to move tags to the end, preserving order within each type
247246
refs.sort((a, b) => (a.refType !== b.refType ? (a.refType === 'tag' ? 1 : -1) : 0));
248247

249-
await wait(20000);
250-
251248
return { refs: refs };
252249
} catch (ex) {
253250
cancellable?.cancelled();

0 commit comments

Comments
 (0)