Details
Description
Just used the Cloudera RPMs to upgrade from hue 1.0.1 to 1.1.0, but a couple of scripts in /usr/share/hue/build/env/bin were not appropriately updated.
In particular, the supervisor and hue scripts were still referring to 1.0.1:
<<supervisor>>
#!/usr/share/hue/build/env/bin/python
- EASY-INSTALL-ENTRY-SCRIPT: 'desktop==1.0.1','console_scripts','supervisor'
_requires_ = 'desktop==1.0.1'
import sys
from pkg_resources import load_entry_point
sys.exit(
load_entry_point('desktop==1.0.1', 'console_scripts', 'supervisor')()
)
Simply changing the 1.0.1 to 1.1.0 got me up and running, but thought it best to write it up. If CDH is a more appropriate project to file a ticket, please close and I'll refile accordingly.