Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Commit

Permalink
Fixed: Support-Data Swap plugin reports KB instead of MB (bug#10501).
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosfrodriguez committed May 3, 2014
1 parent 0d7d3b1 commit 026c35e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
@@ -1,4 +1,5 @@
#3.3.7 2014-??-??
- 2014-05-02 Fixed bug#[10501](http://bugs.otrs.org/show_bug.cgi?id=10501) - Support-Data Swap plugin reports KB instead of MB.
- 2014-05-02 Fixed bug#[10458](http://bugs.otrs.org/show_bug.cgi?id=10458) - Can't use system registration with some OTRS-IDs.
- 2014-04-29 Fixed bug#[10470](http://bugs.otrs.org/show_bug.cgi?id=10470) - Need FormID! error when embedding image when creating a Process Ticket.
- 2014-04-28 Fixed bug#[9876](http://bugs.otrs.org/show_bug.cgi?id=9876) - CaseSensitive option wrong in CustomerCompany.
Expand Down
2 changes: 1 addition & 1 deletion Kernel/System/SupportDataCollector/Plugin/OS/Swap.pm
Expand Up @@ -87,7 +87,7 @@ sub Run {
);
}

my $SwapUsed = $SwapTotal - $SwapFree;
my $SwapUsed = ( $SwapTotal - $SwapFree ) / 1024;

if ( $SwapUsed > 200 ) {
$Self->AddResultProblem(
Expand Down

0 comments on commit 026c35e

Please sign in to comment.