Skip to content

Commit f8f2d64

Browse files
authored
Merge pull request #48 from SensitTechnologies/github-action-workflow+documentation-tweaks
GitHub action workflow+documentation tweaks
2 parents e4e3396 + 1264ac7 commit f8f2d64

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/main_sensit-mess.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ jobs:
3737
with:
3838
name: .net-app
3939
path: ${{ env.DOTNET_ROOT }}/myapp
40-
- name: List deployment directory
41-
run: ls ${{ env.DOTNET_ROOT }}/myapp
4240

4341
deploy:
4442
runs-on: ubuntu-latest
-950 Bytes
Binary file not shown.

MESS/MESS.Services/WorkInstruction/WorkInstructionService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ public partial class WorkInstructionService : IWorkInstructionService
4242
private const string WORK_INSTRUCTION_IMAGES_DIRECTORY = "WorkInstructionImages";
4343
const string WORK_INSTRUCTION_CACHE_KEY = "AllWorkInstructions";
4444

45-
// Currently, this is set to 50MB
46-
private const int SPREADSHEET_SIZE_LIMIT = 50 * 1024 * 1024;
45+
// Currently, this is set to 500MB
46+
private const int SPREADSHEET_SIZE_LIMIT = 500 * 1024 * 1024;
4747

4848
/// <summary>
4949
/// Initializes a new instance of the <see cref="WorkInstructionService"/> class.
@@ -1153,4 +1153,4 @@ public async Task<bool> UpdateWorkInstructionAsync(WorkInstruction workInstructi
11531153
private static partial System.Text.RegularExpressions.Regex PartsListRegex();
11541154
[System.Text.RegularExpressions.GeneratedRegex("<.*?>")]
11551155
private static partial System.Text.RegularExpressions.Regex RemoveHtmlRegex();
1156-
}
1156+
}

0 commit comments

Comments
 (0)