Skip to content

Version 0.7.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@boranblok boranblok released this 11 Aug 20:05
· 140 commits to master since this release

Expanded the DuplicateMessageThrottleFilter to be able to filter messages that show a % progress.

This is modified in the log4netConfig.xml by expanding the
<filter type="LoggingExtensions.DuplicateMessageThrottleFilter, LoggingExtensions" />
to

<filter type="LoggingExtensions.DuplicateMessageThrottleFilter, LoggingExtensions">
  <filterPercentages value="true" />
  <percentageCutoff value="85" />
</filter>

When this is omitted the new filter functionality is disabled.

If you want to disable all but the first progress percentage log set percentageCutoff to 100.

Added a new parameter VerifyAfterMinutes this parameter defines how soon we start verification of an upload. Set this to the typical time the indexer needs to index your files to clean out the temp folder faster and reduce unnecceseary logging of the file status even further.

This parameter needs to be added before RepostAfterMinutes in the config. A new configuration format that is less rigid is in the todo list for next release.

Until then add this before RepostAfterMinutes

<!-- After how many minutes should we verify the upload. 
     Set this to the typical index time of the indexer to limit search API spam. 
     But low enough to speed backup cleaning -->
<VerifyAfterMinutes>20</VerifyAfterMinutes>