projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77c9d23
)
SL::DB::BackgroundJob: refactoring von set_data für mehr programmatische Sicherheit
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 13 Apr 2015 10:52:58 +0000
(12:52 +0200)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 13 Apr 2015 10:52:58 +0000
(12:52 +0200)
$self->data kann durchaus leer sein, und dann gibt YAML::Load schlicht
einen leeren String und keine Hashref zurück.
Daher $self->data_as_hash benutzen, das bereits für die meisten Fälle
gewappnet ist. Außerdem einfachere Hash-Zuweisung.
SL/DB/BackgroundJob.pm
patch
|
blob
|
history
diff --git
a/SL/DB/BackgroundJob.pm
b/SL/DB/BackgroundJob.pm
index
10e319b
..
2040297
100644
(file)
--- a/
SL/DB/BackgroundJob.pm
+++ b/
SL/DB/BackgroundJob.pm
@@
-84,9
+84,10
@@
sub data_as_hash {
sub set_data {
my ($self, %data) = @_;
- my $data = YAML::Load($self->data);
- $data->{$_} = $data{$_} for keys %data;
- $self->data(YAML::Dump($data));
+ $self->data(YAML::Dump({
+ %{ $self->data_as_hash },
+ %data,
+ }));
$self;
}