Skip to content

Commit 86a387e

Browse files
WiednerFemmericp
authored andcommitted
Changed Speed of Application
1 parent f1ab185 commit 86a387e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

moongui.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local moongui = {}
77
function moongui.subrange(t,first)
88
local sub = {}
99
local i = first
10-
while #t>=i and ((i-first)<=1000) do
10+
while #t>=i and ((i-first)<=1500) do
1111
sub[#sub + 1] = t[i]
1212
i = i +1
1313
end

moongui/src/app/main/main.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export class MainComponent implements OnInit {
187187
* Starts the Process for Fetching Log File
188188
*/
189189
private runningData() {
190-
Observable.interval(1000).subscribe(()=> {
190+
Observable.interval(500).subscribe(()=> {
191191
if (this.moonGenService.getShouldRun() == true) {
192192
if (this.executionNumber != this.moonGenService.getExecutionNumber()) {
193193
this.executionNumber = this.moonGenService.getExecutionNumber();

0 commit comments

Comments
 (0)