-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: free up cache space when files get deleted (#198)
Clear processing file information when files get deleted
- Loading branch information
Nelson Ochoa
authored
Apr 17, 2023
1 parent
dfe0025
commit 6759275
Showing
8 changed files
with
425 additions
and
228 deletions.
There are no files selected for viewing
152 changes: 78 additions & 74 deletions
152
...rationtests/java/com/aws/greengrass/integrationtests/logmanager/LogManagerConfigTest.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...resources/com/aws/greengrass/integrationtests/logmanager/doNotDeleteFilesAfterUpload.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
services: | ||
aws.greengrass.LogManager: | ||
configuration: | ||
periodicUploadIntervalSec: 10 | ||
logsUploaderConfiguration: | ||
componentLogsConfigurationMap: | ||
UserComponentA: | ||
logFileRegex: '^integTestRandomLogFiles.log\w*' | ||
logFileDirectoryPath: '{{logFileDirectoryPath}}' | ||
deleteLogFileAfterCloudUpload: 'false' | ||
|
||
main: | ||
lifecycle: | ||
install: | ||
all: echo All installed | ||
dependencies: | ||
- aws.greengrass.LogManager |
Oops, something went wrong.