Skip to content

Commit 78d161a

Browse files
author
Marcin Przepiorowski
committed
v2.3.5.2
1 parent 724d811 commit 78d161a

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 2.3.5.1
1+
## 2.3.5.2
22

33
### Changed
44
- dx_provision_vdb hook fix

bin/dx_provision_vdb.pl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,16 @@
7272
'postrefresh=s@' =>\(my $postrefresh),
7373
'rac_instance=s@' => \(my $rac_instance),
7474
'additionalMount=s@' => \(my $additionalMount),
75-
'configureclone=s' => \(my $configureclone),
76-
'prerefresh=s' =>\(my $prerefresh),
77-
'prerewind=s' =>\(my $prerewind),
78-
'postrewind=s' =>\(my $postrewind),
79-
'presnapshot=s' =>\(my $presnapshot),
80-
'postsnapshot=s' =>\(my $postsnapshot),
81-
'prestart=s' =>\(my $prestart),
82-
'poststart=s' =>\(my $poststart),
83-
'prestop=s' =>\(my $prestop),
84-
'poststop=s' =>\(my $poststop),
75+
'configureclone=s@' => \(my $configureclone),
76+
'prerefresh=s@' =>\(my $prerefresh),
77+
'prerewind=s@' =>\(my $prerewind),
78+
'postrewind=s@' =>\(my $postrewind),
79+
'presnapshot=s@' =>\(my $presnapshot),
80+
'postsnapshot=s@' =>\(my $postsnapshot),
81+
'prestart=s@' =>\(my $prestart),
82+
'poststart=s@' =>\(my $poststart),
83+
'prestop=s@' =>\(my $prestop),
84+
'poststop=s@' =>\(my $poststop),
8585
'hooks=s' => \(my $hooks),
8686
'prescript=s' => \(my $prescript),
8787
'postscript=s' => \(my $postscript),

lib/Toolkit_helpers.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use File::Spec;
2929

3030
use lib '../lib';
3131

32-
our $version = '2.3.5.1';
32+
our $version = '2.3.5.2';
3333

3434
sub logger {
3535
my $debug = shift;

lib/VDB_obj.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2347,7 +2347,7 @@ sub setPostStopHook {
23472347
my $hook = shift;
23482348
logger($self->{_debug}, "Entering VDB_obj::setPostStopHook",1);
23492349

2350-
$self->setAnyHook('postStart', $hook);
2350+
$self->setAnyHook('postStop', $hook);
23512351
}
23522352

23532353
# Procedure exportDBHooks

0 commit comments

Comments
 (0)