-
Notifications
You must be signed in to change notification settings - Fork 1
/
HydroServer Redesign Part 24.txt
53 lines (39 loc) · 1.57 KB
/
HydroServer Redesign Part 24.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
HydroServer Redesign Part 24
**** Summary ****
- Changes to address progress bar update issues for:
- Sources metadate files
- Large Data Values files
**** HydroServerTools/Controllers/api ****
- RevisedUploadController.cs
- GetDbRecordCountsForFile(...)
- Add try/catch statement for debugging purposes
- Revise 'final' checking logic for 'processed' and 'loaded' counts
- Miscellaneous format changes
**** HydroServerTools/Utilities ****
- RepositoryContext.cs
- LoadDb(...)
- Change SYNCHRONOUS calls to 'Add' method and 'CommitNewRecords' to ASYNCHRONOUS
**** HydroServerTools/Views/CSVUpload ****
- DragAndDropFilesRevised.cshtml
- requestDbRecordCountMonitoring(...)
- Remove conitional return on end condition
- Add diagnostic console messages
- Reduce timeout for 'loaded' progress bar updates to zero (0)
- Reduce timeout for recursive call to 100 milliseconds
**** HydroServerToolsRepository/HydroServerToolsRepository ****
- Repository.cs
- AddDataValues(...)
- Move status context 'FInalize' call outside 'for' loop
- Comment out experimental await Task.Yield() calls
- Utils.cs
- CommitNewRecords(...)
- Revise logic to capture 'load' counts for 'Sources'
- BulkInsert(...)
- Add status context calls to SetRecordCount(...) and SetCounts(...)
**** HydroServerToolsUtilities ****
- DbLoadCounts.cs
- New method: SetCounts(...)
- StatusContext.cs
- New method: SetCounts(...)
- Method: GetCountsMessage(...)
- Comment out experimental record count code...