Remove the __MARCONI_SETUP_ global from init
This was used to know when Marconi was being loaded and avoid registering configuration options and doing other things. This is not necessary anymore. Change-Id: Icf43302581eefb563b10ddec5831eeec0d068872 Partially-Implements: py3k-support
This commit is contained in:
parent
666693ff29
commit
3d3d6ef839
@ -13,16 +13,10 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# Import guard. No module level import during the setup procedure.
|
import marconi.queues.bootstrap
|
||||||
try:
|
|
||||||
if __MARCONI_SETUP__: # NOQA
|
|
||||||
import sys as _sys
|
|
||||||
_sys.stderr.write('Running from marconi source directory.\n')
|
|
||||||
del _sys
|
|
||||||
except NameError:
|
|
||||||
import marconi.queues.bootstrap
|
|
||||||
Bootstrap = marconi.queues.bootstrap.Bootstrap
|
|
||||||
|
|
||||||
import marconi.version
|
import marconi.version
|
||||||
|
|
||||||
|
Bootstrap = marconi.queues.bootstrap.Bootstrap
|
||||||
|
|
||||||
|
|
||||||
__version__ = marconi.version.version_info.cached_version_string()
|
__version__ = marconi.version.version_info.cached_version_string()
|
||||||
|
Loading…
Reference in New Issue
Block a user