Member since
03-07-2019
345
Posts
17
Kudos Received
9
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1455 | 07-31-2024 11:57 AM | |
| 2538 | 03-27-2019 04:52 AM |
07-31-2024
11:57 AM
This is currently not supported. I would recommend you to raise a git issue (enhancement or feature) for this and add in the usecase and other details there so the team would review and take it forward. https://github.com/cloudera/hue/issues
... View more
04-27-2022
09:37 AM
The root cause of this is PEP 3151, introduced in Python 3.3: PEP 3151 – Reworking the OS and IO exception hierarchy Python 3.3 release notes You can overcome this issue with the following changes in the file /usr/lib64/python2.7/test/test_support.py From: def _is_ipv6_enabled():
"""Check whether IPv6 is enabled on this host."""
if socket.has_ipv6:
sock = None
try:
sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
sock.bind((HOSTv6, 0))
return True
except OSError:
pass
finally:
if sock:
sock.close()
return False To: def _is_ipv6_enabled():
"""Check whether IPv6 is enabled on this host."""
if socket.has_ipv6:
sock = None
try:
sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
sock.bind((HOSTv6, 0))
return True
except socket.error if sys.version_info < (3, 3) else OSError: ---> this is how it should be
pass
finally:
if sock:
sock.close()
... View more
03-27-2019
04:52 AM
1 Kudo
@Artur Brandys, Just saw this question not sure if you have already found the answer or not. No, you cannot have a different database for users as these are internal to Hue's django and how it works with the tables by taking the information from Hue.ini.
... View more
02-15-2019
07:55 PM
1 Kudo
@Dinesh Chitlangia On the host where you are seeing the issue, try removing the rpm's of oozie using yum remove oozie_2_6_* and then try reinstalling it from the command line using the command yum install oozie_2_6_*
... View more