Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Timon Stampfli
soicode
Commits
84e0ca4d
Commit
84e0ca4d
authored
Nov 05, 2020
by
Timon Stampfli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
increasing Timeout & fixing inverted check
parent
66e33403
Pipeline
#5682
passed with stages
in 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/runner.ts
src/runner.ts
+2
-2
No files found.
src/runner.ts
View file @
84e0ca4d
...
...
@@ -59,8 +59,8 @@ export class Runner {
let
finishedTimeout
:
vscode
.
Disposable
[]
=
[];
let
timer
:
Timer
|
undefined
;
if
(
this
.
store
.
disableCompilerTimeout
)
{
timer
=
new
Timer
(
1
0000
);
if
(
this
.
store
.
disableCompilerTimeout
===
false
)
{
timer
=
new
Timer
(
2
0000
);
finished
.
push
(
timer
);
}
const
cleanup
=
(
abort
?:
boolean
)
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment