From e64fd4ce9eb81c15b028f6897c2ae22b721fc2dd Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Fri, 18 Dec 2015 16:39:42 +0100 Subject: [PATCH] MT#16985 InterceptDB points to pair instead of RO Change-Id: I1febb3027322ab8527c5b89b169f98ade85ba293 --- lib/NGCP/InterceptSchema.pm | 13 +++++++++++++ lib/NGCP/RoSchema.pm | 13 ------------- 2 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 lib/NGCP/InterceptSchema.pm delete mode 100644 lib/NGCP/RoSchema.pm diff --git a/lib/NGCP/InterceptSchema.pm b/lib/NGCP/InterceptSchema.pm new file mode 100644 index 00000000..5a41e6b5 --- /dev/null +++ b/lib/NGCP/InterceptSchema.pm @@ -0,0 +1,13 @@ +package NGCP::InterceptSchema; +use Moose; +extends 'NGCP::Schema'; + +our $VERSION = '2.007'; + +sub connection { + my ($self) = @_; + $self->SUPER::connection($self->config->as_hash->{ngcp_intercept_connect_info}); +} + +no Moose; +1; diff --git a/lib/NGCP/RoSchema.pm b/lib/NGCP/RoSchema.pm deleted file mode 100644 index 31b94b13..00000000 --- a/lib/NGCP/RoSchema.pm +++ /dev/null @@ -1,13 +0,0 @@ -package NGCP::RoSchema; -use Moose; -extends 'NGCP::Schema'; - -our $VERSION = '2.007'; - -sub connection { - my ($self) = @_; - $self->SUPER::connection($self->config->as_hash->{ngcp_ro_connect_info}); -} - -no Moose; -1;