summaryrefslogtreecommitdiffstats
path: root/openstack/common/plugin/__init__.py
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2013-06-19 07:14:43 +0100
committerMark McLoughlin <markmc@redhat.com>2013-06-19 08:47:52 +0100
commit4b78868f4e062e3fd77ef14de3dcba4e2f864f7f (patch)
tree4db6436cb2e637ce8e2b7f9198ff8869e13d5d42 /openstack/common/plugin/__init__.py
parent688832fd379776bf12f21f76c884caa42a48d2c5 (diff)
downloadoslo-4b78868f4e062e3fd77ef14de3dcba4e2f864f7f.tar.gz
oslo-4b78868f4e062e3fd77ef14de3dcba4e2f864f7f.tar.xz
oslo-4b78868f4e062e3fd77ef14de3dcba4e2f864f7f.zip
Remove the unused plugins framework
This framework was merged a year ago and AFAICT hasn't seen use beyond the two initial wikimedia extensions for Nova. The framework basically allows a way for a single plugin to register API extensions and notification hooks. Both of these can be done by directly using config opts like osapi_compute_extension and notification_driver so this framework really only helps if we expected to (and wanted to) lots of these plugins in the wild. Nova is the only project using this and we don't have an active maintainer listed in the MAINTAINERS file, so it seems like it's time to remove it from the incubator. Change-Id: I5552b5625e26f4821464807743545ec6f5117f2b
Diffstat (limited to 'openstack/common/plugin/__init__.py')
-rw-r--r--openstack/common/plugin/__init__.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/openstack/common/plugin/__init__.py b/openstack/common/plugin/__init__.py
deleted file mode 100644
index b706747..0000000
--- a/openstack/common/plugin/__init__.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 2012 OpenStack Foundation.
-# All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License"); you may
-# not use this file except in compliance with the License. You may obtain
-# a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-# License for the specific language governing permissions and limitations
-# under the License.