increased responseMsToLive from 0 to 10s, to prevent infinite loops

This commit is contained in:
Art Lowel
2019-10-07 15:35:19 +02:00
parent 4836fd9ec8
commit 254b7d1633
9 changed files with 11 additions and 11 deletions

View File

@@ -20,7 +20,7 @@ import { DSOChangeAnalyzer } from '../data/dso-change-analyzer.service';
@Injectable()
export class WorkflowItemDataService extends DataService<WorkflowItem> {
protected linkPath = 'workflowitems';
protected responseMsToLive = 0;
protected responseMsToLive = 10 * 1000;
constructor(
protected comparator: DSOChangeAnalyzer<WorkflowItem>,