summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
Diffstat (limited to 'config-db')
-rw-r--r--config-db/OpenSLX/ConfigDB.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm
index 7bcce91d..ed86c8e1 100644
--- a/config-db/OpenSLX/ConfigDB.pm
+++ b/config-db/OpenSLX/ConfigDB.pm
@@ -1044,12 +1044,12 @@ sub incrementGlobalCounter
my $self = shift;
my $counterName = shift;
- $self->start_transaction();
+ $self->startTransaction();
my $value = $self->fetchGlobalInfo($counterName);
return unless defined $value;
my $newValue = $value + 1;
$self->changeGlobalInfo($counterName, $newValue);
- $self->commit_transaction();
+ $self->commitTransaction();
return $value;
}