mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 03:06:37 +00:00
93_DbRep: running though tableCurrentFillup if database is closed
git-svn-id: https://svn.fhem.de/fhem/trunk@18488 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
1877af5a63
commit
a9f0755c52
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||||
# Do not insert empty lines here, update check depends on it.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- change: 93_DbRep: running though tableCurrentFillup if database is closed
|
||||||
- new: 70_BOTVAC: initial release
|
- new: 70_BOTVAC: initial release
|
||||||
- feature: 73_AutoShuttersControl: change blocking handle, add privacy drive
|
- feature: 73_AutoShuttersControl: change blocking handle, add privacy drive
|
||||||
- bugfix: 49_SSCam: refresh snapgallery device if snap was done by itself
|
- bugfix: 49_SSCam: refresh snapgallery device if snap was done by itself
|
||||||
|
@ -57,6 +57,7 @@ no if $] >= 5.017011, warnings => 'experimental::smartmatch';
|
|||||||
|
|
||||||
# Versions History intern
|
# Versions History intern
|
||||||
our %DbRep_vNotesIntern = (
|
our %DbRep_vNotesIntern = (
|
||||||
|
"8.11.2" => "03.02.2019 fix no running tableCurrentFillup if database is closed ",
|
||||||
"8.11.1" => "25.01.2019 fix sort of versionNotes ",
|
"8.11.1" => "25.01.2019 fix sort of versionNotes ",
|
||||||
"8.11.0" => "24.01.2019 command exportToFile or attribute \"expimpfile\" accepts option \"MAXLINES=\" ",
|
"8.11.0" => "24.01.2019 command exportToFile or attribute \"expimpfile\" accepts option \"MAXLINES=\" ",
|
||||||
"8.10.1" => "23.01.2019 change DbRep_charfilter to eliminate \xc2",
|
"8.10.1" => "23.01.2019 change DbRep_charfilter to eliminate \xc2",
|
||||||
@ -630,6 +631,12 @@ sub DbRep_Set($@) {
|
|||||||
return undef;
|
return undef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($opt =~ m/tableCurrentFillup/ && $hash->{ROLE} ne "Agent") {
|
||||||
|
$hash->{LASTCMD} = $prop?"$opt $prop":"$opt";
|
||||||
|
DbRep_Main($hash,$opt);
|
||||||
|
return undef;
|
||||||
|
}
|
||||||
|
|
||||||
#######################################################################################################
|
#######################################################################################################
|
||||||
## keine Aktionen außer die über diesem Eintrag solange Reopen xxxx im DbLog-Device läuft
|
## keine Aktionen außer die über diesem Eintrag solange Reopen xxxx im DbLog-Device läuft
|
||||||
#######################################################################################################
|
#######################################################################################################
|
||||||
@ -673,10 +680,6 @@ sub DbRep_Set($@) {
|
|||||||
DbRep_beforeproc($hash, "delEntries");
|
DbRep_beforeproc($hash, "delEntries");
|
||||||
DbRep_Main($hash,$opt);
|
DbRep_Main($hash,$opt);
|
||||||
|
|
||||||
} elsif ($opt =~ m/tableCurrentFillup/ && $hash->{ROLE} ne "Agent") {
|
|
||||||
$hash->{LASTCMD} = $prop?"$opt $prop":"$opt";
|
|
||||||
DbRep_Main($hash,$opt);
|
|
||||||
|
|
||||||
} elsif ($opt eq "deviceRename") {
|
} elsif ($opt eq "deviceRename") {
|
||||||
shift @a;
|
shift @a;
|
||||||
shift @a;
|
shift @a;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user