Once every 2 days or so, I get this error message in the log:
v651, 2025-12-11 17:42:51: Traceback (most recent call last):
File "/home/user/hydrus/hydrus git/venv/lib64/python3.13/site-packages/twisted/python/threadpool.py", line 269, in inContext
result = inContext.theWork() # type: ignore[attr-defined]
File "/home/user/hydrus/hydrus git/venv/lib64/python3.13/site-packages/twisted/python/threadpool.py", line 285, in <lambda>
inContext.theWork = lambda: context.call( # type: ignore[attr-defined]
File "/home/user/hydrus/hydrus git/venv/lib64/python3.13/site-packages/twisted/python/context.py", line 117, in callWithContext
return self.currentContext().callWithContext(ctx, func, *args, **kw)
File "/home/user/hydrus/hydrus git/venv/lib64/python3.13/site-packages/twisted/python/context.py", line 82, in callWithContext
return func(*args, **kw)
File "/home/user/hydrus/hydrus git/hydrus/client/networking/api/ClientLocalServerResourcesAddURLs.py", line 140, in _threadDoGETJob
url_statuses = CG.client_controller.Read( 'url_statuses', normalised_url )
File "/home/user/hydrus/hydrus git/hydrus/core/HydrusController.py", line 696, in Read
return self._Read( action, *args, **kwargs )
File "/home/user/hydrus/hydrus git/hydrus/core/HydrusController.py", line 214, in _Read
result = self.db.Read( action, *args, **kwargs )
File "/home/user/hydrus/hydrus git/hydrus/core/HydrusDB.py", line 1269, in Read
return job.GetResult()
File "/home/user/hydrus/hydrus git/hydrus/core/HydrusDBBase.py", line 343, in GetResult
raise e
hydrus.core.HydrusExceptions.DBException: URLClassException: Invalid IPv6 URL
Database Traceback (most recent call last):
File "/home/user/hydrus/hydrus git/hydrus/client/networking/ClientNetworkingFunctions.py", line 565, in ParseURL
return urllib.parse.urlparse( url )
~~~~~~~~~~~~~~~~~~~~~^^^^^^^
File "/usr/lib64/python3.13/urllib/parse.py", line 395, in urlparse
splitresult = urlsplit(url, scheme, allow_fragments)
File "/usr/lib64/python3.13/urllib/parse.py", line 514, in urlsplit
raise ValueError("Invalid IPv6 URL")
ValueError: Invalid IPv6 URL
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/user/hydrus/hydrus git/hydrus/core/HydrusDB.py", line 877, in _ProcessJob
result = self._Read( action, *args, **kwargs )
File "/home/user/hydrus/hydrus git/hydrus/core/HydrusDB.py", line 952, in _Read
return self._read_commands_to_methods[ action ]( *args, **kwargs )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
File "/home/user/hydrus/hydrus git/hydrus/client/db/ClientDBFilesMetadataRich.py", line 166, in GetURLStatuses
search_urls = ClientNetworkingFunctions.GetSearchURLs( url )
File "/home/user/hydrus/hydrus git/hydrus/client/networking/ClientNetworkingFunctions.py", line 415, in GetSearchURLs
p = ParseURL( url )
File "/home/user/hydrus/hydrus git/hydrus/client/networking/ClientNetworkingFunctions.py", line 569, in ParseURL
raise HydrusExceptions.URLClassException( str( e ) )
hydrus.core.HydrusExceptions.URLClassException: Invalid IPv6 URL
I don't know what it means, and I haven't noticed anything going wrong in Hydrus, but it might be important so I thought I'd show it and hope that you know what's happening.