Results 50 comments of Lonni J Friedman

Thanks. My `SITEURL` is: `SITEURL = 'https://netllama.linux-sxs.org/ll'` I inserted `logger.debug(f'site_url = {site_url}\tsite_url_path = {site_url_path}\tsrc_path = {src_path}')` as line 406, which gave me: ``` site_url = ParseResult(scheme='https', image_process.py:406 netloc='netllama.linux-sxs.org', path='/ll', params='',...

That change breaks all the image links, as they don't exist via that path. pix is a subdirectory inside of content. The change that you're suggesting implies that pix is...

Setting `STATIC_PATHS = ['pix']` does fix the original problem. However, it also results in copying over everything in the `pix` directory, which is undesirable (there are hundreds of GB of...

I was able to work around this locally by catching `IsADirectoryError` exceptions on line 440 of image_process.py: ``` except (FileNotFoundError, UnidentifiedImageError, IsADirectoryError): ```

I attached to the parent conserver process with strace, and its spewing this stuff repeatedly every time one of the child processes dies: --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_KILLED, si_pid=27575, si_uid=0, si_status=SIGABRT,...

After some more experimentation, I've found that the conserver is recoverable (for a few hours) without rebooting the entire OS. Also, running "console -u", even when the buffer overflow storm...

After additional triage efforts, I have determined that all of this instability is triggered when the hostname (`ipmi.c001.for002.ix` in the example provided above) is unreachable, due to a DNS resolution...

> Sorry for all the trouble you've been having. Couple things: > > * What OS is this on? Ubuntu 18.04.5 LTS(bionic): GNU/Linux 5.4.0-1055-aws x86_64 > > * Is this...

@bstansell is there any other information that I can provide to continue with the investigation?