responses
Hi,
I installed recently the last version of NXLOG-CE (3.0.2284) on my windows server 2016 Standard.
I noticed that the configcache is not functionnal in my case because of an erreor when nxlog service stop => "System Error 109 has occurred. The pipe has ended"
My configcache.dat file is not updated and when I restart the service, a lot of old logs are sended to my logstash
Here's my nxlog conf file
Panic Soft
define ROOT C:\nxlog
define CERTDIR %ROOT%\cert
define CONFDIR %ROOT%\conf
define LOGDIR %ROOT%\data
define LOGFILE %LOGDIR%\nxlog.log
LogFile %LOGFILE%
LogLevel INFO
Moduledir %ROOT%\Modules
Pidfile %ROOT%\nxlog.pid
SpoolDir %ROOT%\SpoolDir
CacheDir %ROOT%\CacheDir
<Extension _syslog>
Module xm_gelf
</Extension>
<Extension json>
Module xm_json
</Extension>
<Extension _charconv>
Module xm_charconv
AutodetectCharsets iso8859-2, utf-8, utf-16, utf-32
</Extension>
<Extension _exec>
Module xm_exec
</Extension>
<Extension _fileop>
Module xm_fileop
# Check the size of our log file hourly, rotate if larger than 5MB
<Schedule>
Every 1 hour
Exec if (file_exists('%LOGFILE%') and \
(file_size('%LOGFILE%') >= 5M)) \
file_cycle('%LOGFILE%', 8);
</Schedule>
# Rotate our log file every week on Sunday at midnight
<Schedule>
When @weekly
Exec if file_exists('%LOGFILE%') file_cycle('%LOGFILE%', 8);
</Schedule>
</Extension>
# Collecting event log
<Input eventlog>
Module im_msvistalog
ReadFromLast TRUE
SavePos TRUE
Exec to_json();
</Input>
<Output ssl>
Module om_ssl
Host XX.XX.XX.XX
CertFile %CERTDIR%\MyCertFile.crt
Port XXXX
AllowUntrusted TRUE
</Output>
<Route 1>
Path eventlog => ssl
</Route>
Thank's a lot for your help
Comments (3)
Hello Sir,
Please can you share nxlog.log file?
Another helpful info is to change LogLevel INFO to LogLevel DEBUG and upload the logs so we can have more data.
Please note to remove sensitive data since this will be publicly.
Sincerely
Klevin
We have the same issue. Nothing I see is very interesting in the logfile.
Windows evtlog has an entry :
Fault bucket 1357947291813639625, type 4
Event Name: APPCRASH
Response: Not available
Cab Id: 0
Problem signature:
P1: nxlog.exe
P2: 0.0.0.0
P3: 00000000
P4: StackHash_2c8c
P5: 10.0.19041.1682
P6: 7b5414ec
P7: c0000374
P8: PCH_A5_FROM_ntdll+0x000000000009D894
P9:
P10:
Hi,
Here's my log (with INFO loglevel)
2022-06-09 17:04:12 INFO connecting to XXXXXXXX:XXXX
2022-06-09 17:04:12 INFO nxlog-ce-3.0.2284 started
2022-06-09 17:04:12 INFO successfully connected to XXXXXXXX:XXXX
And here's the log with DEBUG loglevel
2022-06-09 15:35:34 DEBUG nx_win32_svc_main
2022-06-09 15:35:34 DEBUG reading config cache from C:\Program Files\nxlog\CacheDir\configcache.dat
2022-06-09 15:35:34 DEBUG nxlog cache read
2022-06-09 15:35:34 DEBUG Setting up module '_syslog' using xm_gelf
2022-06-09 15:35:34 DEBUG Setting up module 'json' using xm_json
2022-06-09 15:35:34 DEBUG module json has 1 exported functions
2022-06-09 15:35:34 DEBUG registering function to_json
2022-06-09 15:35:34 DEBUG function 'to_json' registered
2022-06-09 15:35:34 DEBUG module json has 3 exported procedures
2022-06-09 15:35:34 DEBUG registering procedure parse_json
2022-06-09 15:35:34 DEBUG procedure 'parse_json' registered
2022-06-09 15:35:34 DEBUG registering procedure parse_json
2022-06-09 15:35:34 DEBUG procedure 'parse_json' registered
2022-06-09 15:35:34 DEBUG registering procedure to_json
2022-06-09 15:35:34 DEBUG procedure 'to_json' registered
2022-06-09 15:35:34 DEBUG Setting up module '_charconv' using xm_charconv
2022-06-09 15:35:34 DEBUG module _charconv has 1 exported functions
2022-06-09 15:35:34 DEBUG registering function convert
2022-06-09 15:35:34 DEBUG function 'convert' registered
2022-06-09 15:35:34 DEBUG module _charconv has 1 exported procedures
2022-06-09 15:35:34 DEBUG registering procedure convert_fields
2022-06-09 15:35:34 DEBUG procedure 'convert_fields' registered
2022-06-09 15:35:34 DEBUG Setting up module '_exec' using xm_exec
2022-06-09 15:35:34 DEBUG module _exec has 0 exported functions
2022-06-09 15:35:34 DEBUG module _exec has 2 exported procedures
2022-06-09 15:35:34 DEBUG registering procedure exec
2022-06-09 15:35:34 DEBUG procedure 'exec' registered
2022-06-09 15:35:34 DEBUG registering procedure exec_async
2022-06-09 15:35:34 DEBUG procedure 'exec_async' registered
2022-06-09 15:35:34 DEBUG Setting up module '_fileop' using xm_fileop
2022-06-09 15:35:34 DEBUG module _fileop has 11 exported functions
2022-06-09 15:35:34 DEBUG registering function file_read
2022-06-09 15:35:34 DEBUG function 'file_read' registered
2022-06-09 15:35:34 DEBUG registering function file_exists
2022-06-09 15:35:34 DEBUG function 'file_exists' registered
2022-06-09 15:35:34 DEBUG registering function file_basename
2022-06-09 15:35:34 DEBUG function 'file_basename' registered
2022-06-09 15:35:34 DEBUG registering function file_dirname
2022-06-09 15:35:34 DEBUG function 'file_dirname' registered
2022-06-09 15:35:34 DEBUG registering function file_mtime
2022-06-09 15:35:34 DEBUG function 'file_mtime' registered
2022-06-09 15:35:34 DEBUG registering function file_ctime
2022-06-09 15:35:34 DEBUG function 'file_ctime' registered
2022-06-09 15:35:34 DEBUG registering function file_type
2022-06-09 15:35:34 DEBUG function 'file_type' registered
2022-06-09 15:35:34 DEBUG registering function file_size
2022-06-09 15:35:34 DEBUG function 'file_size' registered
2022-06-09 15:35:34 DEBUG registering function file_inode
2022-06-09 15:35:34 DEBUG function 'file_inode' registered
2022-06-09 15:35:34 DEBUG registering function dir_temp_get
2022-06-09 15:35:34 DEBUG function 'dir_temp_get' registered
2022-06-09 15:35:34 DEBUG registering function dir_exists
2022-06-09 15:35:34 DEBUG function 'dir_exists' registered
2022-06-09 15:35:34 DEBUG module _fileop has 17 exported procedures
2022-06-09 15:35:34 DEBUG registering procedure file_cycle
2022-06-09 15:35:34 DEBUG procedure 'file_cycle' registered
2022-06-09 15:35:34 DEBUG registering procedure file_cycle
2022-06-09 15:35:34 DEBUG procedure 'file_cycle' registered
2022-06-09 15:35:34 DEBUG registering procedure file_rename
2022-06-09 15:35:34 DEBUG procedure 'file_rename' registered
2022-06-09 15:35:34 DEBUG registering procedure file_copy
2022-06-09 15:35:34 DEBUG procedure 'file_copy' registered
2022-06-09 15:35:34 DEBUG registering procedure file_remove
2022-06-09 15:35:34 DEBUG procedure 'file_remove' registered
2022-06-09 15:35:34 DEBUG registering procedure file_remove
2022-06-09 15:35:34 DEBUG procedure 'file_remove' registered
2022-06-09 15:35:34 DEBUG registering procedure file_link
2022-06-09 15:35:34 DEBUG procedure 'file_link' registered
2022-06-09 15:35:34 DEBUG registering procedure file_append
2022-06-09 15:35:34 DEBUG procedure 'file_append' registered
2022-06-09 15:35:34 DEBUG registering procedure file_write
2022-06-09 15:35:34 DEBUG procedure 'file_write' registered
2022-06-09 15:35:34 DEBUG registering procedure file_truncate
2022-06-09 15:35:34 DEBUG procedure 'file_truncate' registered
2022-06-09 15:35:34 DEBUG registering procedure file_truncate
2022-06-09 15:35:34 DEBUG procedure 'file_truncate' registered
2022-06-09 15:35:34 DEBUG registering procedure file_chown
2022-06-09 15:35:34 DEBUG procedure 'file_chown' registered
2022-06-09 15:35:34 DEBUG registering procedure file_chown
2022-06-09 15:35:34 DEBUG procedure 'file_chown' registered
2022-06-09 15:35:34 DEBUG registering procedure file_chmod
2022-06-09 15:35:34 DEBUG procedure 'file_chmod' registered
2022-06-09 15:35:34 DEBUG registering procedure file_touch
2022-06-09 15:35:34 DEBUG procedure 'file_touch' registered
2022-06-09 15:35:34 DEBUG registering procedure dir_make
2022-06-09 15:35:34 DEBUG procedure 'dir_make' registered
2022-06-09 15:35:34 DEBUG registering procedure dir_remove
2022-06-09 15:35:34 DEBUG procedure 'dir_remove' registered
2022-06-09 15:35:34 DEBUG Setting up module 'eventlog' using im_msvistalog
2022-06-09 15:35:34 DEBUG FlowControl enabled for eventlog
2022-06-09 15:35:34 DEBUG Setting up module 'ssl' using om_ssl
2022-06-09 15:35:34 DEBUG module ssl has 0 exported functions
2022-06-09 15:35:34 DEBUG module ssl has 1 exported procedures
2022-06-09 15:35:34 DEBUG registering procedure reconnect
2022-06-09 15:35:34 DEBUG procedure 'reconnect' registered
2022-06-09 15:35:34 DEBUG CONFIG: _syslog
2022-06-09 15:35:34 DEBUG outputwriter 'gelf' registered
2022-06-09 15:35:34 DEBUG outputwriter 'gelf_udp' registered
2022-06-09 15:35:34 DEBUG outputwriter 'gelf_tcp' registered
2022-06-09 15:35:34 DEBUG CONFIG: json
2022-06-09 15:35:34 DEBUG CONFIG: _charconv
2022-06-09 15:35:34 DEBUG adding xm_charconv charset: iso8859-2
2022-06-09 15:35:34 DEBUG adding xm_charconv charset: utf-8
2022-06-09 15:35:34 DEBUG adding xm_charconv charset: utf-16
2022-06-09 15:35:34 DEBUG adding xm_charconv charset: utf-32
2022-06-09 15:35:34 DEBUG locale charset: CP1252
2022-06-09 15:35:34 DEBUG CONFIG: _exec
2022-06-09 15:35:34 DEBUG CONFIG: _fileop
2022-06-09 15:35:34 DEBUG adding string [C:\Program Files\nxlog\data\nxlog.log]
2022-06-09 15:35:34 DEBUG string literal declared at line 45, character 67 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG literal
2022-06-09 15:35:34 DEBUG nx_expr_new_function: file_exists
2022-06-09 15:35:34 DEBUG global function: file_exists
2022-06-09 15:35:34 DEBUG file_exists declared at line 45, character 68 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG new function: file_exists
2022-06-09 15:35:34 DEBUG adding string [C:\Program Files\nxlog\data\nxlog.log]
2022-06-09 15:35:34 DEBUG string literal declared at line 45, character 127 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG literal
2022-06-09 15:35:34 DEBUG nx_expr_new_function: file_size
2022-06-09 15:35:34 DEBUG global function: file_size
2022-06-09 15:35:34 DEBUG file_size declared at line 45, character 128 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG new function: file_size
2022-06-09 15:35:34 DEBUG integer literal: 5M
2022-06-09 15:35:34 DEBUG integer literal declared at line 45, character 134 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG literal
2022-06-09 15:35:34 DEBUG binary operation declared at line 45, character 135 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG ( expr:5 )
2022-06-09 15:35:34 DEBUG binary operation declared at line 45, character 136 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG ( expr:5 )
2022-06-09 15:35:34 DEBUG adding string [C:\Program Files\nxlog\data\nxlog.log]
2022-06-09 15:35:34 DEBUG string literal declared at line 45, character 191 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG literal
2022-06-09 15:35:34 DEBUG integer literal: 8
2022-06-09 15:35:34 DEBUG integer literal declared at line 45, character 194 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG literal
2022-06-09 15:35:34 DEBUG nx_expr_new_procedure: file_cycle
2022-06-09 15:35:34 DEBUG global procedure: file_cycle
2022-06-09 15:35:34 DEBUG checking procedure log_debug (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure debug (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_info (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_warning (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_error (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure delete (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure delete_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure set_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure sleep (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure drop (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure rename_field (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure reroute (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_to_route (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure parse_json (json - NULL)
2022-06-09 15:35:34 DEBUG checking procedure parse_json (json - NULL)
2022-06-09 15:35:34 DEBUG checking procedure to_json (json - NULL)
2022-06-09 15:35:34 DEBUG checking procedure convert_fields (_charconv - NULL)
2022-06-09 15:35:34 DEBUG checking procedure exec (_exec - NULL)
2022-06-09 15:35:34 DEBUG checking procedure exec_async (_exec - NULL)
2022-06-09 15:35:34 DEBUG checking procedure file_cycle (_fileop - NULL)
2022-06-09 15:35:34 DEBUG checking procedure file_cycle (_fileop - NULL)
2022-06-09 15:35:34 DEBUG file_cycle declared at line 45, character 196 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG procedure
2022-06-09 15:35:34 DEBUG statement: procedure
2022-06-09 15:35:34 DEBUG if-else declared at line 45, character 196 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG if
2022-06-09 15:35:34 DEBUG finished parsing statements
2022-06-09 15:35:34 DEBUG adding string [C:\Program Files\nxlog\data\nxlog.log]
2022-06-09 15:35:34 DEBUG string literal declared at line 51, character 66 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG literal
2022-06-09 15:35:34 DEBUG nx_expr_new_function: file_exists
2022-06-09 15:35:34 DEBUG global function: file_exists
2022-06-09 15:35:34 DEBUG file_exists declared at line 51, character 67 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG new function: file_exists
2022-06-09 15:35:34 DEBUG adding string [C:\Program Files\nxlog\data\nxlog.log]
2022-06-09 15:35:34 DEBUG string literal declared at line 51, character 118 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG literal
2022-06-09 15:35:34 DEBUG integer literal: 8
2022-06-09 15:35:34 DEBUG integer literal declared at line 51, character 121 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG literal
2022-06-09 15:35:34 DEBUG nx_expr_new_procedure: file_cycle
2022-06-09 15:35:34 DEBUG global procedure: file_cycle
2022-06-09 15:35:34 DEBUG checking procedure log_debug (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure debug (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_info (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_warning (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_error (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure delete (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure delete_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure set_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure sleep (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure drop (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure rename_field (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure reroute (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_to_route (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure parse_json (json - NULL)
2022-06-09 15:35:34 DEBUG checking procedure parse_json (json - NULL)
2022-06-09 15:35:34 DEBUG checking procedure to_json (json - NULL)
2022-06-09 15:35:34 DEBUG checking procedure convert_fields (_charconv - NULL)
2022-06-09 15:35:34 DEBUG checking procedure exec (_exec - NULL)
2022-06-09 15:35:34 DEBUG checking procedure exec_async (_exec - NULL)
2022-06-09 15:35:34 DEBUG checking procedure file_cycle (_fileop - NULL)
2022-06-09 15:35:34 DEBUG checking procedure file_cycle (_fileop - NULL)
2022-06-09 15:35:34 DEBUG file_cycle declared at line 51, character 123 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG procedure
2022-06-09 15:35:34 DEBUG statement: procedure
2022-06-09 15:35:34 DEBUG if-else declared at line 51, character 123 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG if
2022-06-09 15:35:34 DEBUG finished parsing statements
2022-06-09 15:35:34 DEBUG CONFIG: eventlog
2022-06-09 15:35:34 DEBUG nx_expr_new_procedure: to_json
2022-06-09 15:35:34 DEBUG global procedure: to_json
2022-06-09 15:35:34 DEBUG checking procedure log_debug (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure debug (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_info (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_warning (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure log_error (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure delete (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure delete_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure set_var (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure create_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_stat (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure sleep (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure drop (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure rename_field (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure reroute (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure add_to_route (NULL - NULL)
2022-06-09 15:35:34 DEBUG checking procedure parse_json (json - NULL)
2022-06-09 15:35:34 DEBUG checking procedure parse_json (json - NULL)
2022-06-09 15:35:34 DEBUG checking procedure to_json (json - NULL)
2022-06-09 15:35:34 DEBUG to_json declared at line 61, character 19 in C:\Program Files\nxlog\conf\nxlog.conf
2022-06-09 15:35:34 DEBUG procedure
2022-06-09 15:35:34 DEBUG statement: procedure
2022-06-09 15:35:34 DEBUG finished parsing statements
2022-06-09 15:35:34 DEBUG CONFIG: ssl
2022-06-09 15:35:34 DEBUG resource data request for 'ssl::keypass'
2022-06-09 15:35:34 DEBUG nxlog config OK
2022-06-09 15:35:34 DEBUG INIT: _syslog
2022-06-09 15:35:34 DEBUG INIT: json
2022-06-09 15:35:34 DEBUG INIT: _charconv
2022-06-09 15:35:34 DEBUG INIT: _exec
2022-06-09 15:35:34 DEBUG INIT: _fileop
2022-06-09 15:35:34 DEBUG INIT: eventlog
2022-06-09 15:35:34 DEBUG INIT: ssl
2022-06-09 15:35:34 DEBUG Pollset initialized for module ssl (method: poll)
2022-06-09 15:35:34 DEBUG parsing path: eventlog => ssl
2022-06-09 15:35:34 DEBUG adding module eventlog to route 1
2022-06-09 15:35:34 DEBUG adding module ssl to route 1
2022-06-09 15:35:34 DEBUG jobgroup created with priority 99
2022-06-09 15:35:34 DEBUG jobgroup created with priority 10
2022-06-09 15:35:34 DEBUG spawning 6 worker threads
2022-06-09 15:35:34 DEBUG worker thread 0 started
2022-06-09 15:35:34 DEBUG worker thread 1 started
2022-06-09 15:35:34 DEBUG worker thread 2 started
2022-06-09 15:35:34 DEBUG worker thread 3 started
2022-06-09 15:35:34 DEBUG worker thread 4 started
2022-06-09 15:35:34 DEBUG worker thread 5 started
2022-06-09 15:35:34 DEBUG worker 0 waiting for new event
2022-06-09 15:35:34 DEBUG worker 1 waiting for new event
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG event thread started
2022-06-09 15:35:34 DEBUG worker 3 waiting for new event
2022-06-09 15:35:34 DEBUG worker 4 waiting for new event
2022-06-09 15:35:34 DEBUG worker 5 waiting for new event
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_START (_syslog)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG no events or no future events, event thread sleeping in condwait
2022-06-09 15:35:34 DEBUG worker 0 got signal for new job
2022-06-09 15:35:34 DEBUG worker 0 processing event 0xf1e90480
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_START (json)
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_START (_syslog)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG START: _syslog
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_START (_charconv)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 0 processing event 0xf1ad30b0
2022-06-09 15:35:34 DEBUG worker 1 got signal for new job
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_START (_charconv)
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1ad3060
2022-06-09 15:35:34 DEBUG START: _charconv
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_START (json)
2022-06-09 15:35:34 DEBUG worker 2 got signal for new job
2022-06-09 15:35:34 DEBUG START: json
2022-06-09 15:35:34 DEBUG worker 2 got no event to process
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_START (_exec)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 0 processing event 0xf1e90480
2022-06-09 15:35:34 DEBUG worker 1 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_START (_exec)
2022-06-09 15:35:34 DEBUG START: _exec
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_START (_fileop)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 3 got signal for new job
2022-06-09 15:35:34 DEBUG worker 3 processing event 0xf1ad3060
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_START (_fileop)
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:34 DEBUG START: _fileop
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 4 got signal for new job
2022-06-09 15:35:34 DEBUG worker 4 processing event 0xf1ad30b0
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_START (eventlog)
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:34 DEBUG worker 5 got signal for new job
2022-06-09 15:35:34 DEBUG worker 5 processing event 0xf1ad3100
2022-06-09 15:35:34 DEBUG worker 0 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_START (eventlog)
2022-06-09 15:35:34 DEBUG START: eventlog
2022-06-09 15:35:34 DEBUG initiating eventlog collection process
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_START (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 1 got signal for new job
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1e90480
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_START (ssl)
2022-06-09 15:35:34 DEBUG START: ssl
2022-06-09 15:35:34 DEBUG worker 2 got signal for new job
2022-06-09 15:35:34 DEBUG worker 2 got no event to process
2022-06-09 15:35:34 INFO nxlog-ce-3.0.2284 started
2022-06-09 15:35:34 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: SCHEDULE (_fileop)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:34 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:34 DEBUG future event, event thread sleeping 1000000ms in cond_timedwait
2022-06-09 15:35:34 DEBUG worker 3 processing event 0xf1ad3150
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: SCHEDULE (_fileop)
2022-06-09 15:35:34 DEBUG executing statements
2022-06-09 15:35:34 DEBUG evaluating expression 'binary operation' at C:\Program Files\nxlog\conf\nxlog.conf:45
2022-06-09 15:35:34 DEBUG evaluating binop(6, 5)
2022-06-09 15:35:34 DEBUG evaluating expression 'file_exists' at C:\Program Files\nxlog\conf\nxlog.conf:45
2022-06-09 15:35:34 DEBUG evaluating function
2022-06-09 15:35:34 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:45
2022-06-09 15:35:34 DEBUG evaluating expression 'binary operation' at C:\Program Files\nxlog\conf\nxlog.conf:45
2022-06-09 15:35:34 DEBUG evaluating binop(6, 1)
2022-06-09 15:35:34 DEBUG evaluating expression 'file_size' at C:\Program Files\nxlog\conf\nxlog.conf:45
2022-06-09 15:35:34 DEBUG evaluating function
2022-06-09 15:35:34 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:45
2022-06-09 15:35:34 DEBUG evaluating expression 'integer literal' at C:\Program Files\nxlog\conf\nxlog.conf:45
2022-06-09 15:35:34 INFO connecting to XXXX:XXXX
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG worker 0 got signal for new job
2022-06-09 15:35:34 DEBUG worker 0 got no event to process
2022-06-09 15:35:34 DEBUG worker 4 waiting for new event
2022-06-09 15:35:34 DEBUG worker 0 waiting for new event
2022-06-09 15:35:34 DEBUG worker 3 waiting for new event
2022-06-09 15:35:34 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:34 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:34 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:34 DEBUG future event, event thread sleeping 984373ms in cond_timedwait
2022-06-09 15:35:34 DEBUG apr_socket_connect() succeeded
2022-06-09 15:35:34 DEBUG add socket [25]
2022-06-09 15:35:34 DEBUG socket added [25]
2022-06-09 15:35:34 INFO successfully connected to XXXX:XXXX
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1c30
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG module ssl got 1 poll events
2022-06-09 15:35:34 DEBUG Module ssl can write
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: WRITE (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1aa0
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: WRITE (ssl)
2022-06-09 15:35:34 DEBUG om_ssl_write
2022-06-09 15:35:34 DEBUG doing handshake
2022-06-09 15:35:34 DEBUG om_ssl WANT_READ in handshake
2022-06-09 15:35:34 DEBUG add socket [21]
2022-06-09 15:35:34 DEBUG removing already added socket with different reqevents
2022-06-09 15:35:34 DEBUG remove socket [25]
2022-06-09 15:35:34 DEBUG socket added [21]
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 2 got signal for new job
2022-06-09 15:35:34 DEBUG worker 2 got no event to process
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG worker 4 got signal for new job
2022-06-09 15:35:34 DEBUG worker 4 got no event to process
2022-06-09 15:35:34 DEBUG worker 4 waiting for new event
2022-06-09 15:35:34 DEBUG worker 0 got signal for new job
2022-06-09 15:35:34 DEBUG worker 0 got no event to process
2022-06-09 15:35:34 DEBUG worker 0 waiting for new event
2022-06-09 15:35:34 DEBUG module ssl got 1 poll events
2022-06-09 15:35:34 DEBUG Module ssl can read
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: READ (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 3 got signal for new job
2022-06-09 15:35:34 DEBUG worker 3 got no event to process
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 1 waiting for new event
2022-06-09 15:35:34 DEBUG worker 3 processing event 0xf1eb1640
2022-06-09 15:35:34 DEBUG worker 2 got signal for new job
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: READ (ssl)
2022-06-09 15:35:34 DEBUG worker 2 got no event to process
2022-06-09 15:35:34 DEBUG om_ssl read
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG doing handshake
2022-06-09 15:35:34 DEBUG verify callback (ok: 0)
2022-06-09 15:35:34 DEBUG preverification returned non-OK: self signed certificate
2022-06-09 15:35:34 DEBUG verify callback (ok: 1)
2022-06-09 15:35:34 DEBUG handshake successful
2022-06-09 15:35:34 DEBUG add socket [25]
2022-06-09 15:35:34 DEBUG removing already added socket with different reqevents
2022-06-09 15:35:34 DEBUG remove socket [21]
2022-06-09 15:35:34 DEBUG socket added [25]
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG add socket [21]
2022-06-09 15:35:34 DEBUG worker 4 got signal for new job
2022-06-09 15:35:34 DEBUG removing already added socket with different reqevents
2022-06-09 15:35:34 DEBUG worker 4 got no event to process
2022-06-09 15:35:34 DEBUG remove socket [25]
2022-06-09 15:35:34 DEBUG worker 4 waiting for new event
2022-06-09 15:35:34 DEBUG socket added [21]
2022-06-09 15:35:34 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 0 got signal for new job
2022-06-09 15:35:34 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:34 DEBUG worker 3 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:34 DEBUG om_ssl_write
2022-06-09 15:35:34 DEBUG add socket [21]
2022-06-09 15:35:34 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:34 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 1 got signal for new job
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 0 waiting for new event
2022-06-09 15:35:34 DEBUG module ssl got 1 poll events
2022-06-09 15:35:34 DEBUG Module ssl can read
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: READ (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1640
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: READ (ssl)
2022-06-09 15:35:34 DEBUG om_ssl read
2022-06-09 15:35:34 DEBUG add socket [21]
2022-06-09 15:35:34 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1960
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 2 got signal for new job
2022-06-09 15:35:34 DEBUG worker 2 got no event to process
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG worker 4 got signal for new job
2022-06-09 15:35:34 DEBUG worker 4 got no event to process
2022-06-09 15:35:34 DEBUG worker 4 waiting for new event
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1870
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 3 got signal for new job
2022-06-09 15:35:34 DEBUG worker 3 got no event to process
2022-06-09 15:35:34 DEBUG worker 3 waiting for new event
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 0 got signal for new job
2022-06-09 15:35:34 DEBUG worker 0 processing event 0xf1eb1730
2022-06-09 15:35:34 DEBUG worker 1 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 0 processing event 0xf1eb1640
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 2 got signal for new job
2022-06-09 15:35:34 DEBUG worker 2 got no event to process
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 0 processing event 0xf1eb1690
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 4 got signal for new job
2022-06-09 15:35:34 DEBUG worker 4 got no event to process
2022-06-09 15:35:34 DEBUG worker 4 waiting for new event
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 3 got signal for new job
2022-06-09 15:35:34 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:34 DEBUG worker 0 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG im_msvistalog subscribed successfully using a query/channel
2022-06-09 15:35:34 DEBUG im_msvistalog subscribed successfully using a query/channel
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG im_msvistalog instance eventlog started
2022-06-09 15:35:34 DEBUG worker 1 got signal for new job
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:34 DEBUG worker 5 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:34 DEBUG RESUME: eventlog
2022-06-09 15:35:34 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:34 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:34 DEBUG EvtNext returned ERROR_NO_MORE_ITEMS
2022-06-09 15:35:34 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:34 DEBUG EvtNext returned ERROR_NO_MORE_ITEMS
2022-06-09 15:35:34 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:34 DEBUG worker 1 waiting for new event
2022-06-09 15:35:34 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:34 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:34 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:34 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:34 DEBUG future event, event thread sleeping 593740ms in cond_timedwait
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 2 got signal for new job
2022-06-09 15:35:34 DEBUG worker 2 got no event to process
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 3 processing event 0xf1eb18c0
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 4 got signal for new job
2022-06-09 15:35:34 DEBUG worker 4 got no event to process
2022-06-09 15:35:34 DEBUG worker 4 waiting for new event
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG worker 0 got signal for new job
2022-06-09 15:35:34 DEBUG worker 0 got no event to process
2022-06-09 15:35:34 DEBUG worker 0 waiting for new event
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 5 got signal for new job
2022-06-09 15:35:34 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:34 DEBUG worker 3 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 1 got signal for new job
2022-06-09 15:35:34 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:34 DEBUG worker 5 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 2 got signal for new job
2022-06-09 15:35:34 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:34 DEBUG worker 1 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 4 got signal for new job
2022-06-09 15:35:34 DEBUG worker 4 processing event 0xf1eb16e0
2022-06-09 15:35:34 DEBUG worker 2 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:34 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:34 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:34 DEBUG event added to jobqueue
2022-06-09 15:35:34 DEBUG worker 0 got signal for new job
2022-06-09 15:35:34 DEBUG worker 0 processing event 0xf1eb1c80
2022-06-09 15:35:34 DEBUG worker 4 waiting for new event
2022-06-09 15:35:34 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:34 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1cd0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG worker 3 got no event to process
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:35 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:35 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:35 DEBUG future event, event thread sleeping 406236ms in cond_timedwait
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb15f0
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:35 DEBUG worker 1 got no event to process
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:35 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:35 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:35 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:35 DEBUG future event, event thread sleeping 406236ms in cond_timedwait
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb18c0
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG worker 4 got signal for new job
2022-06-09 15:35:35 DEBUG worker 4 got no event to process
2022-06-09 15:35:35 DEBUG worker 4 waiting for new event
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG worker 3 processing event 0xf1eb1730
2022-06-09 15:35:35 DEBUG worker 2 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 got signal for new job
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1960
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG worker 5 got no event to process
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:35 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:35 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:35 DEBUG future event, event thread sleeping 593735ms in cond_timedwait
2022-06-09 15:35:35 DEBUG worker 4 got signal for new job
2022-06-09 15:35:35 DEBUG worker 4 processing event 0xf1eb1690
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:35 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:35 DEBUG im_msvistalog read 12 events
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG worker 2 got no event to process
2022-06-09 15:35:35 DEBUG worker 2 waiting for new event
2022-06-09 15:35:35 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 3 processing event 0xf1eb1d20
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 3 processing event 0xf1eb15f0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 got signal for new job
2022-06-09 15:35:35 DEBUG worker 0 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG om_ssl sent 1210 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG worker 1 got no event to process
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG worker 5 got no event to process
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG worker 2 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb1730
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG worker 2 waiting for new event
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 got signal for new job
2022-06-09 15:35:35 DEBUG worker 0 got no event to process
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG worker 5 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 1
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl sent 1245 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 2
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG om_ssl sent 1206 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG worker 3 got no event to process
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 got signal for new job
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG worker 2 waiting for new event
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG om_ssl sent 1413 bytes
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG worker 5 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG om_ssl sent 1419 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG worker 3 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG om_ssl sent 1196 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb17d0
2022-06-09 15:35:35 DEBUG worker 2 got no event to process
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG worker 2 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG om_ssl sent 1196 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 got signal for new job
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG worker 5 got no event to process
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1820
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG worker 3 got no event to process
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1870
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG worker 1 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG om_ssl sent 1425 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG worker 2 got no event to process
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG om_ssl sent 1206 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG worker 5 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG worker 3 got no event to process
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG worker 2 waiting for new event
2022-06-09 15:35:35 DEBUG worker 1 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG worker 0 got signal for new job
2022-06-09 15:35:35 DEBUG worker 0 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG executing statements
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1cd0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG worker 3 got no event to process
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG worker 1 got no event to process
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG worker 4 processing event 0xf1eb1960
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG RESUME: eventlog
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:35 DEBUG worker 4 waiting for new event
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 got signal for new job
2022-06-09 15:35:35 DEBUG worker 0 got no event to process
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:35 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:35 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:35 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:35 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:35 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:35 DEBUG future event, event thread sleeping 593735ms in cond_timedwait
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG RESUME: eventlog
2022-06-09 15:35:35 DEBUG worker 5 got no event to process
2022-06-09 15:35:35 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG worker 2 waiting for new event
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG worker 3 got no event to process
2022-06-09 15:35:35 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG RESUME: eventlog
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1cd0
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG om_ssl_write
2022-06-09 15:35:35 DEBUG worker 1 got no event to process
2022-06-09 15:35:35 DEBUG add socket [21]
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:35 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 4 got signal for new job
2022-06-09 15:35:35 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG RESUME: eventlog
2022-06-09 15:35:35 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:35 DEBUG worker 4 waiting for new event
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG worker 2 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 1 got signal for new job
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb18c0
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 1 processing event 0xf1eb1640
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG worker 3 got signal for new job
2022-06-09 15:35:35 DEBUG worker 3 got no event to process
2022-06-09 15:35:35 DEBUG worker 3 waiting for new event
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 4 got signal for new job
2022-06-09 15:35:35 DEBUG worker 4 processing event 0xf1eb1d20
2022-06-09 15:35:35 DEBUG worker 1 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 0 got signal for new job
2022-06-09 15:35:35 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:35 DEBUG worker 4 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 got signal for new job
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1cd0
2022-06-09 15:35:35 DEBUG worker 0 waiting for new event
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:35 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:35 DEBUG event added to jobqueue
2022-06-09 15:35:35 DEBUG worker 2 processing event 0xf1eb1d20
2022-06-09 15:35:35 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:35 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:35 DEBUG worker 5 got signal for new job
2022-06-09 15:35:35 DEBUG worker 5 got no event to process
2022-06-09 15:35:35 DEBUG worker 5 waiting for new event
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG worker 3 got signal for new job
2022-06-09 15:35:36 DEBUG worker 3 got no event to process
2022-06-09 15:35:36 DEBUG worker 3 waiting for new event
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 1 got signal for new job
2022-06-09 15:35:36 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:36 DEBUG worker 2 waiting for new event
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:36 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:36 DEBUG future event, event thread sleeping 397120ms in cond_timedwait
2022-06-09 15:35:36 DEBUG worker 4 got signal for new job
2022-06-09 15:35:36 DEBUG worker 4 processing event 0xf1eb16e0
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:36 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:36 DEBUG worker 4 waiting for new event
2022-06-09 15:35:36 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:36 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:36 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:36 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:36 DEBUG future event, event thread sleeping 397120ms in cond_timedwait
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 0 got signal for new job
2022-06-09 15:35:36 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:36 DEBUG worker 1 waiting for new event
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 0 processing event 0xf1eb1d20
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG worker 5 got signal for new job
2022-06-09 15:35:36 DEBUG worker 5 got no event to process
2022-06-09 15:35:36 DEBUG worker 5 waiting for new event
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 3 got signal for new job
2022-06-09 15:35:36 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:36 DEBUG worker 0 waiting for new event
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 2 got signal for new job
2022-06-09 15:35:36 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:36 DEBUG worker 3 waiting for new event
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG worker 4 got signal for new job
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG worker 4 got no event to process
2022-06-09 15:35:36 DEBUG worker 4 waiting for new event
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG worker 1 got signal for new job
2022-06-09 15:35:36 DEBUG worker 1 got no event to process
2022-06-09 15:35:36 DEBUG worker 1 waiting for new event
2022-06-09 15:35:36 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:36 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:36 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:36 DEBUG future event, event thread sleeping 592128ms in cond_timedwait
2022-06-09 15:35:36 DEBUG worker 5 got signal for new job
2022-06-09 15:35:36 DEBUG worker 5 processing event 0xf1eb1870
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:36 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:36 DEBUG EvtNext returned ERROR_NO_MORE_ITEMS
2022-06-09 15:35:36 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:36 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:36 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:36 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:36 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:36 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:36 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:36 DEBUG future event, event thread sleeping 592128ms in cond_timedwait
2022-06-09 15:35:36 DEBUG worker 5 waiting for new event
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 2 processing event 0xf1eb1cd0
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG worker 0 got signal for new job
2022-06-09 15:35:36 DEBUG worker 0 got no event to process
2022-06-09 15:35:36 DEBUG worker 0 waiting for new event
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 3 got signal for new job
2022-06-09 15:35:36 DEBUG worker 2 waiting for new event
2022-06-09 15:35:36 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 4 got signal for new job
2022-06-09 15:35:36 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG worker 3 waiting for new event
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 1 got signal for new job
2022-06-09 15:35:36 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:36 DEBUG worker 4 waiting for new event
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 5 got signal for new job
2022-06-09 15:35:36 DEBUG worker 1 waiting for new event
2022-06-09 15:35:36 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG worker 0 got signal for new job
2022-06-09 15:35:36 DEBUG worker 0 got no event to process
2022-06-09 15:35:36 DEBUG worker 0 waiting for new event
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 5 processing event 0xf1eb1cd0
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:36 DEBUG worker 2 got signal for new job
2022-06-09 15:35:36 DEBUG worker 2 got no event to process
2022-06-09 15:35:36 DEBUG worker 2 waiting for new event
2022-06-09 15:35:36 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:36 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:36 DEBUG event added to jobqueue
2022-06-09 15:35:36 DEBUG worker 3 got signal for new job
2022-06-09 15:35:36 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:36 DEBUG worker 5 waiting for new event
2022-06-09 15:35:36 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:36 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG worker 4 got signal for new job
2022-06-09 15:35:37 DEBUG worker 4 got no event to process
2022-06-09 15:35:37 DEBUG worker 4 waiting for new event
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG worker 1 got signal for new job
2022-06-09 15:35:37 DEBUG worker 1 got no event to process
2022-06-09 15:35:37 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:37 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:37 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:37 DEBUG future event, event thread sleeping 402633ms in cond_timedwait
2022-06-09 15:35:37 DEBUG worker 1 processing event 0xf1eb1730
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:37 DEBUG worker 0 got signal for new job
2022-06-09 15:35:37 DEBUG worker 0 got no event to process
2022-06-09 15:35:37 DEBUG worker 0 waiting for new event
2022-06-09 15:35:37 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:37 DEBUG worker 1 waiting for new event
2022-06-09 15:35:37 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:37 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:37 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:37 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:37 DEBUG future event, event thread sleeping 402633ms in cond_timedwait
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 2 got signal for new job
2022-06-09 15:35:37 DEBUG worker 2 processing event 0xf1eb1820
2022-06-09 15:35:37 DEBUG worker 3 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG worker 5 got signal for new job
2022-06-09 15:35:37 DEBUG worker 5 got no event to process
2022-06-09 15:35:37 DEBUG worker 5 waiting for new event
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG worker 4 got signal for new job
2022-06-09 15:35:37 DEBUG worker 4 got no event to process
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG worker 4 waiting for new event
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 0 got signal for new job
2022-06-09 15:35:37 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:37 DEBUG worker 2 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 1 got signal for new job
2022-06-09 15:35:37 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:37 DEBUG worker 0 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 3 got signal for new job
2022-06-09 15:35:37 DEBUG worker 3 processing event 0xf1eb18c0
2022-06-09 15:35:37 DEBUG worker 1 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:37 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:37 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:37 DEBUG future event, event thread sleeping 593739ms in cond_timedwait
2022-06-09 15:35:37 DEBUG worker 5 got signal for new job
2022-06-09 15:35:37 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:37 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:37 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:37 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:37 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:37 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:37 DEBUG worker 5 waiting for new event
2022-06-09 15:35:37 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:37 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:37 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:37 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:37 DEBUG future event, event thread sleeping 593739ms in cond_timedwait
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG worker 4 got signal for new job
2022-06-09 15:35:37 DEBUG worker 4 got no event to process
2022-06-09 15:35:37 DEBUG worker 4 waiting for new event
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 2 got signal for new job
2022-06-09 15:35:37 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:37 DEBUG worker 3 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 0 got signal for new job
2022-06-09 15:35:37 DEBUG worker 0 processing event 0xf1eb1960
2022-06-09 15:35:37 DEBUG worker 2 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 1 got signal for new job
2022-06-09 15:35:37 DEBUG worker 1 processing event 0xf1eb1d20
2022-06-09 15:35:37 DEBUG worker 0 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 5 got signal for new job
2022-06-09 15:35:37 DEBUG worker 5 processing event 0xf1eb1640
2022-06-09 15:35:37 DEBUG worker 1 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 4 got signal for new job
2022-06-09 15:35:37 DEBUG worker 4 processing event 0xf1eb16e0
2022-06-09 15:35:37 DEBUG worker 5 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 3 got signal for new job
2022-06-09 15:35:37 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:37 DEBUG worker 4 waiting for new event
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:37 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:37 DEBUG event added to jobqueue
2022-06-09 15:35:37 DEBUG worker 3 processing event 0xf1eb1690
2022-06-09 15:35:37 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:37 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:37 DEBUG worker 2 got signal for new job
2022-06-09 15:35:37 DEBUG worker 2 got no event to process
2022-06-09 15:35:37 DEBUG worker 2 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 got no event to process
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:38 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:38 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:38 DEBUG future event, event thread sleeping 403784ms in cond_timedwait
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb18c0
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1870
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:38 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:38 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:38 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:38 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:38 DEBUG future event, event thread sleeping 403784ms in cond_timedwait
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb17d0
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1870
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 2 got signal for new job
2022-06-09 15:35:38 DEBUG worker 2 got no event to process
2022-06-09 15:35:38 DEBUG worker 2 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 processing event 0xf1eb18c0
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 3 processing event 0xf1eb1960
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb1690
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:38 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:38 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:38 DEBUG future event, event thread sleeping 593742ms in cond_timedwait
2022-06-09 15:35:38 DEBUG worker 2 got signal for new job
2022-06-09 15:35:38 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:38 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:38 DEBUG im_msvistalog read 14 events
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb17d0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG om_ssl sent 755 bytes
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG worker 3 processing event 0xf1eb16e0
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG worker 0 got no event to process
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1730
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 742 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb15f0
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG om_ssl sent 741 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1820
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG worker 0 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb17d0
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 got no event to process
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 753 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb16e0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1690
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1870
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 got no event to process
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 1034 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1690
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG worker 1 got no event to process
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1d20
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 753 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb16e0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 got no event to process
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 928 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1d20
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG worker 1 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 762 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb16e0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG om_ssl sent 782 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1d20
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb15f0
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb1870
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1d20
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG om_ssl sent 857 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1960
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb1d20
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 760 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1730
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 got no event to process
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 751 bytes
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 got no event to process
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1870
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG executing statements
2022-06-09 15:35:38 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:38 DEBUG before nx_logqueue_push, size: 1
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:38 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb1690
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG RESUME: eventlog
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 1)
2022-06-09 15:35:38 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG worker 2 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1820
2022-06-09 15:35:38 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 2
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG RESUME: eventlog
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:38 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:38 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:38 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:38 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:38 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:38 DEBUG future event, event thread sleeping 578119ms in cond_timedwait
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb18c0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG om_ssl sent 1428 bytes
2022-06-09 15:35:38 DEBUG RESUME: eventlog
2022-06-09 15:35:38 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:38 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1c80
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG RESUME: eventlog
2022-06-09 15:35:38 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:38 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:38 DEBUG worker 2 got signal for new job
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:38 DEBUG worker 2 got no event to process
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG om_ssl_write
2022-06-09 15:35:38 DEBUG worker 2 waiting for new event
2022-06-09 15:35:38 DEBUG add socket [21]
2022-06-09 15:35:38 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:38 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG worker 3 processing event 0xf1eb16e0
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1960
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG RESUME: eventlog
2022-06-09 15:35:38 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 got no event to process
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 got no event to process
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 1 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:38 DEBUG worker 0 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 2 got signal for new job
2022-06-09 15:35:38 DEBUG worker 1 waiting for new event
2022-06-09 15:35:38 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG worker 3 got signal for new job
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG worker 3 got no event to process
2022-06-09 15:35:38 DEBUG worker 3 waiting for new event
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 4 got signal for new job
2022-06-09 15:35:38 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:38 DEBUG worker 2 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 5 got signal for new job
2022-06-09 15:35:38 DEBUG worker 5 processing event 0xf1eb1960
2022-06-09 15:35:38 DEBUG worker 4 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:38 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:38 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:38 DEBUG event added to jobqueue
2022-06-09 15:35:38 DEBUG worker 0 got signal for new job
2022-06-09 15:35:38 DEBUG worker 0 processing event 0xf1eb1690
2022-06-09 15:35:38 DEBUG worker 5 waiting for new event
2022-06-09 15:35:38 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:38 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG worker 1 got signal for new job
2022-06-09 15:35:39 DEBUG worker 1 got no event to process
2022-06-09 15:35:39 DEBUG worker 1 waiting for new event
2022-06-09 15:35:39 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:39 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:39 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:39 DEBUG future event, event thread sleeping 411345ms in cond_timedwait
2022-06-09 15:35:39 DEBUG worker 3 got signal for new job
2022-06-09 15:35:39 DEBUG worker 3 processing event 0xf1eb1640
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:39 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:39 DEBUG worker 3 waiting for new event
2022-06-09 15:35:39 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:39 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:39 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:39 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:39 DEBUG future event, event thread sleeping 411345ms in cond_timedwait
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 0 processing event 0xf1eb1820
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG worker 2 got signal for new job
2022-06-09 15:35:39 DEBUG worker 2 got no event to process
2022-06-09 15:35:39 DEBUG worker 2 waiting for new event
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG worker 4 got signal for new job
2022-06-09 15:35:39 DEBUG worker 4 got no event to process
2022-06-09 15:35:39 DEBUG worker 4 waiting for new event
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 5 got signal for new job
2022-06-09 15:35:39 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:39 DEBUG worker 0 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 1 got signal for new job
2022-06-09 15:35:39 DEBUG worker 1 processing event 0xf1eb17d0
2022-06-09 15:35:39 DEBUG worker 5 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 3 got signal for new job
2022-06-09 15:35:39 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:39 DEBUG worker 1 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 2 got signal for new job
2022-06-09 15:35:39 DEBUG worker 2 processing event 0xf1eb1d20
2022-06-09 15:35:39 DEBUG worker 3 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG worker 4 got signal for new job
2022-06-09 15:35:39 DEBUG worker 4 got no event to process
2022-06-09 15:35:39 DEBUG worker 4 waiting for new event
2022-06-09 15:35:39 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:39 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:39 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:39 DEBUG future event, event thread sleeping 578117ms in cond_timedwait
2022-06-09 15:35:39 DEBUG worker 0 got signal for new job
2022-06-09 15:35:39 DEBUG worker 0 processing event 0xf1eb1730
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:39 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:39 DEBUG EvtNext returned ERROR_NO_MORE_ITEMS
2022-06-09 15:35:39 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:39 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:39 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:39 DEBUG worker 0 waiting for new event
2022-06-09 15:35:39 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:39 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:39 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:39 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:39 DEBUG future event, event thread sleeping 578117ms in cond_timedwait
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 5 got signal for new job
2022-06-09 15:35:39 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:39 DEBUG worker 2 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 5 processing event 0xf1eb17d0
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG worker 1 got signal for new job
2022-06-09 15:35:39 DEBUG worker 1 got no event to process
2022-06-09 15:35:39 DEBUG worker 1 waiting for new event
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 5 processing event 0xf1eb1820
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG worker 3 got signal for new job
2022-06-09 15:35:39 DEBUG worker 3 got no event to process
2022-06-09 15:35:39 DEBUG worker 3 waiting for new event
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG worker 4 got signal for new job
2022-06-09 15:35:39 DEBUG worker 4 got no event to process
2022-06-09 15:35:39 DEBUG worker 4 waiting for new event
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 0 got signal for new job
2022-06-09 15:35:39 DEBUG worker 0 processing event 0xf1eb1730
2022-06-09 15:35:39 DEBUG worker 5 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 2 got signal for new job
2022-06-09 15:35:39 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:39 DEBUG worker 0 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 1 got signal for new job
2022-06-09 15:35:39 DEBUG worker 1 processing event 0xf1eb1870
2022-06-09 15:35:39 DEBUG worker 2 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:39 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:39 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:39 DEBUG event added to jobqueue
2022-06-09 15:35:39 DEBUG worker 3 got signal for new job
2022-06-09 15:35:39 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:39 DEBUG worker 1 waiting for new event
2022-06-09 15:35:39 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:39 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG worker 4 got signal for new job
2022-06-09 15:35:40 DEBUG worker 4 got no event to process
2022-06-09 15:35:40 DEBUG worker 4 waiting for new event
2022-06-09 15:35:40 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:40 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:40 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:40 DEBUG future event, event thread sleeping 421860ms in cond_timedwait
2022-06-09 15:35:40 DEBUG worker 5 got signal for new job
2022-06-09 15:35:40 DEBUG worker 5 processing event 0xf1eb18c0
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:40 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:40 DEBUG worker 5 waiting for new event
2022-06-09 15:35:40 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:40 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:40 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:40 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:40 DEBUG future event, event thread sleeping 421860ms in cond_timedwait
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 0 got signal for new job
2022-06-09 15:35:40 DEBUG worker 0 processing event 0xf1eb1cd0
2022-06-09 15:35:40 DEBUG worker 3 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 2 got signal for new job
2022-06-09 15:35:40 DEBUG worker 2 processing event 0xf1eb1d20
2022-06-09 15:35:40 DEBUG worker 0 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 1 got signal for new job
2022-06-09 15:35:40 DEBUG worker 1 processing event 0xf1eb18c0
2022-06-09 15:35:40 DEBUG worker 2 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 4 got signal for new job
2022-06-09 15:35:40 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:40 DEBUG worker 1 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 5 got signal for new job
2022-06-09 15:35:40 DEBUG worker 5 processing event 0xf1eb18c0
2022-06-09 15:35:40 DEBUG worker 4 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 3 got signal for new job
2022-06-09 15:35:40 DEBUG worker 3 processing event 0xf1eb1820
2022-06-09 15:35:40 DEBUG worker 5 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG worker 0 got signal for new job
2022-06-09 15:35:40 DEBUG worker 0 got no event to process
2022-06-09 15:35:40 DEBUG worker 0 waiting for new event
2022-06-09 15:35:40 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:40 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:40 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:40 DEBUG future event, event thread sleeping 578118ms in cond_timedwait
2022-06-09 15:35:40 DEBUG worker 2 got signal for new job
2022-06-09 15:35:40 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:40 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:40 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:40 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:40 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:40 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:40 DEBUG worker 2 waiting for new event
2022-06-09 15:35:40 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:40 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:40 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:40 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:40 DEBUG future event, event thread sleeping 578118ms in cond_timedwait
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 3 processing event 0xf1eb1960
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG worker 1 got signal for new job
2022-06-09 15:35:40 DEBUG worker 1 got no event to process
2022-06-09 15:35:40 DEBUG worker 1 waiting for new event
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG worker 4 got signal for new job
2022-06-09 15:35:40 DEBUG worker 4 got no event to process
2022-06-09 15:35:40 DEBUG worker 4 waiting for new event
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 5 got signal for new job
2022-06-09 15:35:40 DEBUG worker 5 processing event 0xf1eb17d0
2022-06-09 15:35:40 DEBUG worker 3 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 5 processing event 0xf1eb18c0
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG worker 0 got signal for new job
2022-06-09 15:35:40 DEBUG worker 0 got no event to process
2022-06-09 15:35:40 DEBUG worker 0 waiting for new event
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 2 got signal for new job
2022-06-09 15:35:40 DEBUG worker 2 processing event 0xf1eb1d20
2022-06-09 15:35:40 DEBUG worker 5 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 1 got signal for new job
2022-06-09 15:35:40 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:40 DEBUG worker 2 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 4 got signal for new job
2022-06-09 15:35:40 DEBUG worker 4 processing event 0xf1eb17d0
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:40 DEBUG worker 1 waiting for new event
2022-06-09 15:35:40 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:40 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:40 DEBUG event added to jobqueue
2022-06-09 15:35:40 DEBUG worker 3 got signal for new job
2022-06-09 15:35:40 DEBUG worker 3 processing event 0xf1eb15f0
2022-06-09 15:35:40 DEBUG worker 4 waiting for new event
2022-06-09 15:35:40 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:40 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG worker 0 got signal for new job
2022-06-09 15:35:41 DEBUG worker 0 got no event to process
2022-06-09 15:35:41 DEBUG worker 0 waiting for new event
2022-06-09 15:35:41 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:41 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:41 DEBUG future event, event thread sleeping 408397ms in cond_timedwait
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 5 got signal for new job
2022-06-09 15:35:41 DEBUG worker 5 processing event 0xf1eb1640
2022-06-09 15:35:41 DEBUG worker 2 got signal for new job
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:41 DEBUG worker 3 waiting for new event
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:41 DEBUG worker 2 waiting for new event
2022-06-09 15:35:41 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:41 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:41 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:41 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:41 DEBUG future event, event thread sleeping 408397ms in cond_timedwait
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 1 got signal for new job
2022-06-09 15:35:41 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:41 DEBUG worker 5 waiting for new event
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 1 processing event 0xf1eb16e0
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG worker 4 got signal for new job
2022-06-09 15:35:41 DEBUG worker 4 got no event to process
2022-06-09 15:35:41 DEBUG worker 4 waiting for new event
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 0 got signal for new job
2022-06-09 15:35:41 DEBUG worker 0 processing event 0xf1eb1730
2022-06-09 15:35:41 DEBUG worker 1 waiting for new event
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 3 got signal for new job
2022-06-09 15:35:41 DEBUG worker 3 processing event 0xf1eb18c0
2022-06-09 15:35:41 DEBUG worker 0 waiting for new event
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 2 got signal for new job
2022-06-09 15:35:41 DEBUG worker 2 processing event 0xf1eb1d20
2022-06-09 15:35:41 DEBUG worker 3 waiting for new event
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 2 processing event 0xf1eb1820
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG worker 5 got signal for new job
2022-06-09 15:35:41 DEBUG worker 5 got no event to process
2022-06-09 15:35:41 DEBUG worker 5 waiting for new event
2022-06-09 15:35:41 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:41 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:41 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:41 DEBUG future event, event thread sleeping 589589ms in cond_timedwait
2022-06-09 15:35:41 DEBUG worker 4 got signal for new job
2022-06-09 15:35:41 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:41 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:41 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:41 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:41 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:41 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:41 DEBUG worker 4 waiting for new event
2022-06-09 15:35:41 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:41 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:41 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:41 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:41 DEBUG future event, event thread sleeping 589589ms in cond_timedwait
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 2 processing event 0xf1eb1870
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG worker 1 got signal for new job
2022-06-09 15:35:41 DEBUG worker 1 got no event to process
2022-06-09 15:35:41 DEBUG worker 1 waiting for new event
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 0 got signal for new job
2022-06-09 15:35:41 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:41 DEBUG worker 2 waiting for new event
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 3 got signal for new job
2022-06-09 15:35:41 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:41 DEBUG worker 0 waiting for new event
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:41 DEBUG worker 5 got signal for new job
2022-06-09 15:35:41 DEBUG worker 5 got no event to process
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG worker 5 waiting for new event
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 4 got signal for new job
2022-06-09 15:35:41 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:41 DEBUG worker 3 waiting for new event
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 1 got signal for new job
2022-06-09 15:35:41 DEBUG worker 1 processing event 0xf1eb1820
2022-06-09 15:35:41 DEBUG worker 4 waiting for new event
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 2 got signal for new job
2022-06-09 15:35:41 DEBUG worker 1 waiting for new event
2022-06-09 15:35:41 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:41 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:41 DEBUG event added to jobqueue
2022-06-09 15:35:41 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:41 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:41 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:41 DEBUG worker 0 got signal for new job
2022-06-09 15:35:41 DEBUG worker 0 got no event to process
2022-06-09 15:35:41 DEBUG worker 0 waiting for new event
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 2 processing event 0xf1eb16e0
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG worker 5 got signal for new job
2022-06-09 15:35:42 DEBUG worker 5 got no event to process
2022-06-09 15:35:42 DEBUG worker 5 waiting for new event
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 2 processing event 0xf1eb18c0
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG worker 3 got signal for new job
2022-06-09 15:35:42 DEBUG worker 3 got no event to process
2022-06-09 15:35:42 DEBUG worker 3 waiting for new event
2022-06-09 15:35:42 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:42 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:42 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:42 DEBUG future event, event thread sleeping 405152ms in cond_timedwait
2022-06-09 15:35:42 DEBUG worker 4 got signal for new job
2022-06-09 15:35:42 DEBUG worker 4 processing event 0xf1eb1960
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:42 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:42 DEBUG worker 4 waiting for new event
2022-06-09 15:35:42 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:42 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:42 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:42 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:42 DEBUG future event, event thread sleeping 405152ms in cond_timedwait
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 1 got signal for new job
2022-06-09 15:35:42 DEBUG worker 1 processing event 0xf1eb1d20
2022-06-09 15:35:42 DEBUG worker 2 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG worker 0 got signal for new job
2022-06-09 15:35:42 DEBUG worker 0 got no event to process
2022-06-09 15:35:42 DEBUG worker 0 waiting for new event
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 5 got signal for new job
2022-06-09 15:35:42 DEBUG worker 5 processing event 0xf1eb1820
2022-06-09 15:35:42 DEBUG worker 1 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG worker 3 got signal for new job
2022-06-09 15:35:42 DEBUG worker 3 got no event to process
2022-06-09 15:35:42 DEBUG worker 3 waiting for new event
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 4 got signal for new job
2022-06-09 15:35:42 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:42 DEBUG worker 5 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 2 got signal for new job
2022-06-09 15:35:42 DEBUG worker 2 processing event 0xf1eb1cd0
2022-06-09 15:35:42 DEBUG worker 4 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:42 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:42 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:42 DEBUG future event, event thread sleeping 593127ms in cond_timedwait
2022-06-09 15:35:42 DEBUG worker 0 got signal for new job
2022-06-09 15:35:42 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:42 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:42 DEBUG im_msvistalog read 2 events
2022-06-09 15:35:42 DEBUG executing statements
2022-06-09 15:35:42 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 1 got signal for new job
2022-06-09 15:35:42 DEBUG worker 1 got no event to process
2022-06-09 15:35:42 DEBUG worker 1 waiting for new event
2022-06-09 15:35:42 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:42 DEBUG om_ssl_write
2022-06-09 15:35:42 DEBUG add socket [21]
2022-06-09 15:35:42 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:42 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 4 got signal for new job
2022-06-09 15:35:42 DEBUG worker 4 got no event to process
2022-06-09 15:35:42 DEBUG worker 4 waiting for new event
2022-06-09 15:35:42 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:42 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:42 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:42 DEBUG worker 2 processing event 0xf1eb1d20
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:42 DEBUG executing statements
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 3 got signal for new job
2022-06-09 15:35:42 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:42 DEBUG worker 3 processing event 0xf1eb1820
2022-06-09 15:35:42 DEBUG worker 5 got signal for new job
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:42 DEBUG worker 5 got no event to process
2022-06-09 15:35:42 DEBUG om_ssl_write
2022-06-09 15:35:42 DEBUG worker 1 got signal for new job
2022-06-09 15:35:42 DEBUG add socket [21]
2022-06-09 15:35:42 DEBUG worker 2 waiting for new event
2022-06-09 15:35:42 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:42 DEBUG worker 1 got no event to process
2022-06-09 15:35:42 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 5 waiting for new event
2022-06-09 15:35:42 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:42 DEBUG worker 1 waiting for new event
2022-06-09 15:35:42 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:42 DEBUG worker 4 got signal for new job
2022-06-09 15:35:42 DEBUG worker 4 got no event to process
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:42 DEBUG worker 0 processing event 0xf1eb1cd0
2022-06-09 15:35:42 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:42 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:42 DEBUG RESUME: eventlog
2022-06-09 15:35:42 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:42 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:42 DEBUG worker 4 waiting for new event
2022-06-09 15:35:42 DEBUG worker 0 waiting for new event
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:42 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:42 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:42 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:42 DEBUG future event, event thread sleeping 593127ms in cond_timedwait
2022-06-09 15:35:42 DEBUG worker 2 got signal for new job
2022-06-09 15:35:42 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:42 DEBUG RESUME: eventlog
2022-06-09 15:35:42 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:42 DEBUG worker 3 processing event 0xf1eb15f0
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG worker 2 waiting for new event
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 5 got signal for new job
2022-06-09 15:35:42 DEBUG worker 5 processing event 0xf1eb1960
2022-06-09 15:35:42 DEBUG worker 3 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:42 DEBUG om_ssl_write
2022-06-09 15:35:42 DEBUG add socket [21]
2022-06-09 15:35:42 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:42 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 1 got signal for new job
2022-06-09 15:35:42 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:42 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG RESUME: eventlog
2022-06-09 15:35:42 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:42 DEBUG worker 1 waiting for new event
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 4 got signal for new job
2022-06-09 15:35:42 DEBUG worker 4 processing event 0xf1eb17d0
2022-06-09 15:35:42 DEBUG worker 5 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 0 got signal for new job
2022-06-09 15:35:42 DEBUG worker 0 processing event 0xf1eb1640
2022-06-09 15:35:42 DEBUG worker 4 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG worker 2 got signal for new job
2022-06-09 15:35:42 DEBUG worker 2 got no event to process
2022-06-09 15:35:42 DEBUG worker 2 waiting for new event
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 3 got signal for new job
2022-06-09 15:35:42 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:42 DEBUG worker 0 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 1 got signal for new job
2022-06-09 15:35:42 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:42 DEBUG worker 3 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 5 got signal for new job
2022-06-09 15:35:42 DEBUG worker 5 processing event 0xf1eb1820
2022-06-09 15:35:42 DEBUG worker 1 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:42 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:42 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:42 DEBUG event added to jobqueue
2022-06-09 15:35:42 DEBUG worker 4 got signal for new job
2022-06-09 15:35:42 DEBUG worker 4 processing event 0xf1eb1d20
2022-06-09 15:35:42 DEBUG worker 5 waiting for new event
2022-06-09 15:35:42 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:42 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG worker 2 got signal for new job
2022-06-09 15:35:43 DEBUG worker 2 got no event to process
2022-06-09 15:35:43 DEBUG worker 2 waiting for new event
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 0 got signal for new job
2022-06-09 15:35:43 DEBUG worker 4 waiting for new event
2022-06-09 15:35:43 DEBUG worker 0 processing event 0xf1eb1cd0
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:43 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:43 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:43 DEBUG future event, event thread sleeping 404677ms in cond_timedwait
2022-06-09 15:35:43 DEBUG worker 3 got signal for new job
2022-06-09 15:35:43 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:43 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:43 DEBUG worker 3 waiting for new event
2022-06-09 15:35:43 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:43 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:43 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:43 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:43 DEBUG future event, event thread sleeping 404677ms in cond_timedwait
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 1 got signal for new job
2022-06-09 15:35:43 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:43 DEBUG worker 0 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 1 processing event 0xf1eb16e0
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG worker 5 got signal for new job
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG worker 5 got no event to process
2022-06-09 15:35:43 DEBUG worker 5 waiting for new event
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 2 got signal for new job
2022-06-09 15:35:43 DEBUG worker 2 processing event 0xf1eb18c0
2022-06-09 15:35:43 DEBUG worker 1 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG worker 4 got signal for new job
2022-06-09 15:35:43 DEBUG worker 4 got no event to process
2022-06-09 15:35:43 DEBUG worker 4 waiting for new event
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 3 got signal for new job
2022-06-09 15:35:43 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:43 DEBUG worker 2 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 0 got signal for new job
2022-06-09 15:35:43 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:43 DEBUG worker 3 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:43 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:43 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:43 DEBUG future event, event thread sleeping 593750ms in cond_timedwait
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 5 got signal for new job
2022-06-09 15:35:43 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:43 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:43 DEBUG worker 0 processing event 0xf1eb1640
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG worker 1 got signal for new job
2022-06-09 15:35:43 DEBUG worker 1 got no event to process
2022-06-09 15:35:43 DEBUG worker 1 waiting for new event
2022-06-09 15:35:43 DEBUG im_msvistalog read 2 events
2022-06-09 15:35:43 DEBUG executing statements
2022-06-09 15:35:43 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 4 got signal for new job
2022-06-09 15:35:43 DEBUG worker 4 got no event to process
2022-06-09 15:35:43 DEBUG worker 4 waiting for new event
2022-06-09 15:35:43 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 2 got signal for new job
2022-06-09 15:35:43 DEBUG worker 0 waiting for new event
2022-06-09 15:35:43 DEBUG worker 2 processing event 0xf1eb18c0
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:43 DEBUG om_ssl_write
2022-06-09 15:35:43 DEBUG add socket [21]
2022-06-09 15:35:43 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:43 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 3 got signal for new job
2022-06-09 15:35:43 DEBUG worker 3 got no event to process
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 3 waiting for new event
2022-06-09 15:35:43 DEBUG worker 1 got signal for new job
2022-06-09 15:35:43 DEBUG worker 1 got no event to process
2022-06-09 15:35:43 DEBUG worker 1 waiting for new event
2022-06-09 15:35:43 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:43 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:43 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:43 DEBUG executing statements
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG worker 2 processing event 0xf1eb1cd0
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:43 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:43 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:43 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG om_ssl_write
2022-06-09 15:35:43 DEBUG RESUME: eventlog
2022-06-09 15:35:43 DEBUG add socket [21]
2022-06-09 15:35:43 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:43 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:43 DEBUG worker 5 waiting for new event
2022-06-09 15:35:43 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:43 DEBUG worker 4 got signal for new job
2022-06-09 15:35:43 DEBUG worker 4 got no event to process
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 4 waiting for new event
2022-06-09 15:35:43 DEBUG worker 0 got signal for new job
2022-06-09 15:35:43 DEBUG worker 0 got no event to process
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:43 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:43 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:43 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:43 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:43 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:43 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:43 DEBUG future event, event thread sleeping 593750ms in cond_timedwait
2022-06-09 15:35:43 DEBUG worker 0 processing event 0xf1eb1690
2022-06-09 15:35:43 DEBUG worker 3 got signal for new job
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG worker 3 got no event to process
2022-06-09 15:35:43 DEBUG RESUME: eventlog
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:43 DEBUG worker 0 processing event 0xf1eb16e0
2022-06-09 15:35:43 DEBUG worker 1 got signal for new job
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG worker 2 waiting for new event
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:43 DEBUG RESUME: eventlog
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 1 got no event to process
2022-06-09 15:35:43 DEBUG worker 3 processing event 0xf1eb1d20
2022-06-09 15:35:43 DEBUG worker 0 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:43 DEBUG worker 5 got signal for new job
2022-06-09 15:35:43 DEBUG om_ssl_write
2022-06-09 15:35:43 DEBUG worker 1 waiting for new event
2022-06-09 15:35:43 DEBUG add socket [21]
2022-06-09 15:35:43 DEBUG worker 5 got no event to process
2022-06-09 15:35:43 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:43 DEBUG worker 5 waiting for new event
2022-06-09 15:35:43 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 4 got signal for new job
2022-06-09 15:35:43 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:43 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG RESUME: eventlog
2022-06-09 15:35:43 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:43 DEBUG worker 4 waiting for new event
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 2 got signal for new job
2022-06-09 15:35:43 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:43 DEBUG worker 3 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 0 got signal for new job
2022-06-09 15:35:43 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:43 DEBUG worker 2 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 1 got signal for new job
2022-06-09 15:35:43 DEBUG worker 1 processing event 0xf1eb1d20
2022-06-09 15:35:43 DEBUG worker 0 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 1 processing event 0xf1eb1730
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG worker 5 got signal for new job
2022-06-09 15:35:43 DEBUG worker 5 got no event to process
2022-06-09 15:35:43 DEBUG worker 5 waiting for new event
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 4 got signal for new job
2022-06-09 15:35:43 DEBUG worker 4 processing event 0xf1eb17d0
2022-06-09 15:35:43 DEBUG worker 1 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 3 got signal for new job
2022-06-09 15:35:43 DEBUG worker 3 processing event 0xf1eb15f0
2022-06-09 15:35:43 DEBUG worker 4 waiting for new event
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:43 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:43 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:43 DEBUG event added to jobqueue
2022-06-09 15:35:43 DEBUG worker 2 got signal for new job
2022-06-09 15:35:43 DEBUG worker 3 waiting for new event
2022-06-09 15:35:43 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:43 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:43 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 processing event 0xf1eb1820
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1960
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:44 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:44 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:44 DEBUG future event, event thread sleeping 405021ms in cond_timedwait
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:44 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:44 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:44 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:44 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:44 DEBUG future event, event thread sleeping 405021ms in cond_timedwait
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1730
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 3 got signal for new job
2022-06-09 15:35:44 DEBUG worker 3 got no event to process
2022-06-09 15:35:44 DEBUG worker 3 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1690
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1960
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:44 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:44 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:44 DEBUG future event, event thread sleeping 593747ms in cond_timedwait
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 3 got signal for new job
2022-06-09 15:35:44 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG im_msvistalog read 14 events
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG om_ssl sent 747 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb16e0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG om_ssl sent 782 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1820
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 got no event to process
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1d20
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG om_ssl sent 742 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb1960
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG om_ssl sent 741 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG om_ssl sent 745 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG om_ssl sent 788 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1960
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG om_ssl sent 755 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1690
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG om_ssl sent 742 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 processing event 0xf1eb1870
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 0 processing event 0xf1eb1d20
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1960
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG om_ssl sent 741 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1820
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG om_ssl sent 753 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 0 processing event 0xf1eb1d20
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb1820
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG worker 4 got no event to process
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb18c0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb1870
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG om_ssl sent 1014 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb17d0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG om_ssl sent 968 bytes
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb18c0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb17d0
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG om_ssl sent 969 bytes
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb1870
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG executing statements
2022-06-09 15:35:44 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 got no event to process
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:44 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:44 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG RESUME: eventlog
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG worker 3 waiting for new event
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:44 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:44 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:44 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:44 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:44 DEBUG future event, event thread sleeping 578123ms in cond_timedwait
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 got no event to process
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb16e0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG RESUME: eventlog
2022-06-09 15:35:44 DEBUG om_ssl sent 952 bytes
2022-06-09 15:35:44 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:44 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 got no event to process
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb1d20
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG RESUME: eventlog
2022-06-09 15:35:44 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:44 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1cd0
2022-06-09 15:35:44 DEBUG worker 3 got signal for new job
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG om_ssl_write
2022-06-09 15:35:44 DEBUG worker 3 got no event to process
2022-06-09 15:35:44 DEBUG add socket [21]
2022-06-09 15:35:44 DEBUG worker 3 waiting for new event
2022-06-09 15:35:44 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:44 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG RESUME: eventlog
2022-06-09 15:35:44 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:44 DEBUG worker 2 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 1 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 4 got signal for new job
2022-06-09 15:35:44 DEBUG worker 1 waiting for new event
2022-06-09 15:35:44 DEBUG worker 4 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 3 got signal for new job
2022-06-09 15:35:44 DEBUG worker 3 processing event 0xf1eb16e0
2022-06-09 15:35:44 DEBUG worker 4 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 3 processing event 0xf1eb1730
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 0 got signal for new job
2022-06-09 15:35:44 DEBUG worker 0 got no event to process
2022-06-09 15:35:44 DEBUG worker 0 waiting for new event
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 got signal for new job
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb16e0
2022-06-09 15:35:44 DEBUG worker 3 waiting for new event
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:44 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:44 DEBUG event added to jobqueue
2022-06-09 15:35:44 DEBUG worker 2 processing event 0xf1eb15f0
2022-06-09 15:35:44 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:44 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:44 DEBUG worker 5 got signal for new job
2022-06-09 15:35:44 DEBUG worker 5 got no event to process
2022-06-09 15:35:44 DEBUG worker 5 waiting for new event
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG worker 1 got signal for new job
2022-06-09 15:35:45 DEBUG worker 1 got no event to process
2022-06-09 15:35:45 DEBUG worker 1 waiting for new event
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 4 got signal for new job
2022-06-09 15:35:45 DEBUG worker 4 processing event 0xf1eb18c0
2022-06-09 15:35:45 DEBUG worker 2 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:45 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:45 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:45 DEBUG future event, event thread sleeping 413061ms in cond_timedwait
2022-06-09 15:35:45 DEBUG worker 0 got signal for new job
2022-06-09 15:35:45 DEBUG worker 0 processing event 0xf1eb1640
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:45 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:45 DEBUG worker 0 waiting for new event
2022-06-09 15:35:45 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:45 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:45 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:45 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:45 DEBUG future event, event thread sleeping 413061ms in cond_timedwait
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 3 got signal for new job
2022-06-09 15:35:45 DEBUG worker 3 processing event 0xf1eb1960
2022-06-09 15:35:45 DEBUG worker 4 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG worker 5 got signal for new job
2022-06-09 15:35:45 DEBUG worker 5 got no event to process
2022-06-09 15:35:45 DEBUG worker 5 waiting for new event
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 1 got signal for new job
2022-06-09 15:35:45 DEBUG worker 3 waiting for new event
2022-06-09 15:35:45 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG worker 2 got signal for new job
2022-06-09 15:35:45 DEBUG worker 2 got no event to process
2022-06-09 15:35:45 DEBUG worker 2 waiting for new event
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 0 got signal for new job
2022-06-09 15:35:45 DEBUG worker 0 processing event 0xf1eb1c80
2022-06-09 15:35:45 DEBUG worker 1 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 4 got signal for new job
2022-06-09 15:35:45 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:45 DEBUG worker 0 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 5 got signal for new job
2022-06-09 15:35:45 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:45 DEBUG worker 4 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:45 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:45 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:45 DEBUG future event, event thread sleeping 575030ms in cond_timedwait
2022-06-09 15:35:45 DEBUG worker 3 got signal for new job
2022-06-09 15:35:45 DEBUG worker 3 processing event 0xf1eb1690
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:45 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:45 DEBUG EvtNext returned ERROR_NO_MORE_ITEMS
2022-06-09 15:35:45 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:45 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:45 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:45 DEBUG worker 3 waiting for new event
2022-06-09 15:35:45 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:45 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:45 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:45 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:45 DEBUG future event, event thread sleeping 575030ms in cond_timedwait
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 2 got signal for new job
2022-06-09 15:35:45 DEBUG worker 2 processing event 0xf1eb18c0
2022-06-09 15:35:45 DEBUG worker 5 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 1 got signal for new job
2022-06-09 15:35:45 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:45 DEBUG worker 2 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 1 processing event 0xf1eb1730
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG worker 0 got signal for new job
2022-06-09 15:35:45 DEBUG worker 0 got no event to process
2022-06-09 15:35:45 DEBUG worker 0 waiting for new event
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 4 got signal for new job
2022-06-09 15:35:45 DEBUG worker 4 processing event 0xf1eb1690
2022-06-09 15:35:45 DEBUG worker 1 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 3 got signal for new job
2022-06-09 15:35:45 DEBUG worker 3 got no event to process
2022-06-09 15:35:45 DEBUG worker 3 waiting for new event
2022-06-09 15:35:45 DEBUG worker 4 processing event 0xf1eb17d0
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 5 got signal for new job
2022-06-09 15:35:45 DEBUG worker 5 processing event 0xf1eb1870
2022-06-09 15:35:45 DEBUG worker 4 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:45 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:45 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:45 DEBUG event added to jobqueue
2022-06-09 15:35:45 DEBUG worker 2 got signal for new job
2022-06-09 15:35:45 DEBUG worker 2 processing event 0xf1eb1640
2022-06-09 15:35:45 DEBUG worker 5 waiting for new event
2022-06-09 15:35:45 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:45 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG worker 0 got signal for new job
2022-06-09 15:35:46 DEBUG worker 0 got no event to process
2022-06-09 15:35:46 DEBUG worker 0 waiting for new event
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 1 got signal for new job
2022-06-09 15:35:46 DEBUG worker 1 processing event 0xf1eb1960
2022-06-09 15:35:46 DEBUG worker 2 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:46 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:46 DEBUG future event, event thread sleeping 412843ms in cond_timedwait
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 3 got signal for new job
2022-06-09 15:35:46 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:46 DEBUG worker 4 got signal for new job
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:46 DEBUG worker 1 waiting for new event
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:46 DEBUG worker 4 waiting for new event
2022-06-09 15:35:46 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:46 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:46 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:46 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:46 DEBUG future event, event thread sleeping 412843ms in cond_timedwait
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 5 got signal for new job
2022-06-09 15:35:46 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:46 DEBUG worker 3 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 5 processing event 0xf1eb1cd0
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG worker 0 got signal for new job
2022-06-09 15:35:46 DEBUG worker 0 got no event to process
2022-06-09 15:35:46 DEBUG worker 0 waiting for new event
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 2 got signal for new job
2022-06-09 15:35:46 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:46 DEBUG worker 5 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 1 got signal for new job
2022-06-09 15:35:46 DEBUG worker 1 processing event 0xf1eb1d20
2022-06-09 15:35:46 DEBUG worker 2 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 4 got signal for new job
2022-06-09 15:35:46 DEBUG worker 4 processing event 0xf1eb18c0
2022-06-09 15:35:46 DEBUG worker 1 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 3 got signal for new job
2022-06-09 15:35:46 DEBUG worker 3 processing event 0xf1eb1640
2022-06-09 15:35:46 DEBUG worker 4 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:46 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:46 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:46 DEBUG future event, event thread sleeping 578118ms in cond_timedwait
2022-06-09 15:35:46 DEBUG worker 0 got signal for new job
2022-06-09 15:35:46 DEBUG worker 0 processing event 0xf1eb15f0
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:46 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:46 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:46 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:46 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:46 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:46 DEBUG worker 0 waiting for new event
2022-06-09 15:35:46 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:46 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:46 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:46 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:46 DEBUG future event, event thread sleeping 578118ms in cond_timedwait
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 5 got signal for new job
2022-06-09 15:35:46 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:46 DEBUG worker 3 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 2 got signal for new job
2022-06-09 15:35:46 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:46 DEBUG worker 5 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 1 got signal for new job
2022-06-09 15:35:46 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG worker 2 waiting for new event
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 4 got signal for new job
2022-06-09 15:35:46 DEBUG worker 4 processing event 0xf1eb17d0
2022-06-09 15:35:46 DEBUG worker 1 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 0 got signal for new job
2022-06-09 15:35:46 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:46 DEBUG worker 4 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 3 got signal for new job
2022-06-09 15:35:46 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:46 DEBUG worker 0 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:46 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:46 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:46 DEBUG event added to jobqueue
2022-06-09 15:35:46 DEBUG worker 5 got signal for new job
2022-06-09 15:35:46 DEBUG worker 5 processing event 0xf1eb1690
2022-06-09 15:35:46 DEBUG worker 3 waiting for new event
2022-06-09 15:35:46 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:46 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 2 got signal for new job
2022-06-09 15:35:47 DEBUG worker 5 waiting for new event
2022-06-09 15:35:47 DEBUG worker 2 processing event 0xf1eb18c0
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG worker 1 got signal for new job
2022-06-09 15:35:47 DEBUG worker 1 got no event to process
2022-06-09 15:35:47 DEBUG worker 1 waiting for new event
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG worker 4 got signal for new job
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG worker 4 got no event to process
2022-06-09 15:35:47 DEBUG worker 4 waiting for new event
2022-06-09 15:35:47 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:47 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:47 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:47 DEBUG future event, event thread sleeping 421860ms in cond_timedwait
2022-06-09 15:35:47 DEBUG worker 0 got signal for new job
2022-06-09 15:35:47 DEBUG worker 0 processing event 0xf1eb1820
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:47 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:47 DEBUG worker 0 waiting for new event
2022-06-09 15:35:47 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:47 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:47 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:47 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:47 DEBUG future event, event thread sleeping 421860ms in cond_timedwait
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 3 got signal for new job
2022-06-09 15:35:47 DEBUG worker 3 processing event 0xf1eb1960
2022-06-09 15:35:47 DEBUG worker 2 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 5 got signal for new job
2022-06-09 15:35:47 DEBUG worker 3 waiting for new event
2022-06-09 15:35:47 DEBUG worker 5 processing event 0xf1eb17d0
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 1 got signal for new job
2022-06-09 15:35:47 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:47 DEBUG worker 5 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 4 got signal for new job
2022-06-09 15:35:47 DEBUG worker 4 processing event 0xf1eb18c0
2022-06-09 15:35:47 DEBUG worker 1 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG worker 0 got signal for new job
2022-06-09 15:35:47 DEBUG worker 0 got no event to process
2022-06-09 15:35:47 DEBUG worker 0 waiting for new event
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 2 got signal for new job
2022-06-09 15:35:47 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:47 DEBUG worker 4 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:47 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:47 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:47 DEBUG future event, event thread sleeping 578119ms in cond_timedwait
2022-06-09 15:35:47 DEBUG worker 3 got signal for new job
2022-06-09 15:35:47 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:47 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:47 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:47 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:47 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:47 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:47 DEBUG worker 3 waiting for new event
2022-06-09 15:35:47 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:47 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:47 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:47 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:47 DEBUG future event, event thread sleeping 578119ms in cond_timedwait
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 5 got signal for new job
2022-06-09 15:35:47 DEBUG worker 5 processing event 0xf1eb16e0
2022-06-09 15:35:47 DEBUG worker 2 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 1 got signal for new job
2022-06-09 15:35:47 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:47 DEBUG worker 5 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 0 got signal for new job
2022-06-09 15:35:47 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:47 DEBUG worker 1 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 0 processing event 0xf1eb1640
2022-06-09 15:35:47 DEBUG worker 4 got signal for new job
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG worker 4 got no event to process
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG worker 4 waiting for new event
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 0 processing event 0xf1eb1870
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG worker 3 got signal for new job
2022-06-09 15:35:47 DEBUG worker 3 got no event to process
2022-06-09 15:35:47 DEBUG worker 3 waiting for new event
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 2 got signal for new job
2022-06-09 15:35:47 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:47 DEBUG worker 0 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:47 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:47 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:47 DEBUG event added to jobqueue
2022-06-09 15:35:47 DEBUG worker 5 got signal for new job
2022-06-09 15:35:47 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:47 DEBUG worker 2 waiting for new event
2022-06-09 15:35:47 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:47 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 1 got signal for new job
2022-06-09 15:35:48 DEBUG worker 5 waiting for new event
2022-06-09 15:35:48 DEBUG worker 1 processing event 0xf1eb16e0
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 4 got signal for new job
2022-06-09 15:35:48 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:48 DEBUG worker 1 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:48 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:48 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:48 DEBUG future event, event thread sleeping 418888ms in cond_timedwait
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 3 got signal for new job
2022-06-09 15:35:48 DEBUG worker 3 processing event 0xf1eb18c0
2022-06-09 15:35:48 DEBUG worker 0 got signal for new job
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG worker 0 processing event 0xf1eb15f0
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:48 DEBUG worker 4 waiting for new event
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:48 DEBUG worker 0 waiting for new event
2022-06-09 15:35:48 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:48 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:48 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:48 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:48 DEBUG future event, event thread sleeping 418888ms in cond_timedwait
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 2 got signal for new job
2022-06-09 15:35:48 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:48 DEBUG worker 3 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 5 got signal for new job
2022-06-09 15:35:48 DEBUG worker 5 processing event 0xf1eb1820
2022-06-09 15:35:48 DEBUG worker 2 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 1 got signal for new job
2022-06-09 15:35:48 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:48 DEBUG worker 5 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 4 got signal for new job
2022-06-09 15:35:48 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:48 DEBUG worker 1 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG worker 0 got signal for new job
2022-06-09 15:35:48 DEBUG worker 0 got no event to process
2022-06-09 15:35:48 DEBUG worker 0 waiting for new event
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG worker 3 got signal for new job
2022-06-09 15:35:48 DEBUG worker 3 got no event to process
2022-06-09 15:35:48 DEBUG worker 3 waiting for new event
2022-06-09 15:35:48 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:48 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:48 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:48 DEBUG future event, event thread sleeping 578008ms in cond_timedwait
2022-06-09 15:35:48 DEBUG worker 2 got signal for new job
2022-06-09 15:35:48 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:48 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:48 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:48 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:48 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:48 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:48 DEBUG worker 2 waiting for new event
2022-06-09 15:35:48 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:48 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:48 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:48 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:48 DEBUG future event, event thread sleeping 578008ms in cond_timedwait
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 5 got signal for new job
2022-06-09 15:35:48 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:48 DEBUG worker 4 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 1 got signal for new job
2022-06-09 15:35:48 DEBUG worker 1 processing event 0xf1eb15f0
2022-06-09 15:35:48 DEBUG worker 5 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 0 got signal for new job
2022-06-09 15:35:48 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:48 DEBUG worker 1 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 3 got signal for new job
2022-06-09 15:35:48 DEBUG worker 3 processing event 0xf1eb16e0
2022-06-09 15:35:48 DEBUG worker 0 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 2 got signal for new job
2022-06-09 15:35:48 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:48 DEBUG worker 3 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:48 DEBUG worker 4 got signal for new job
2022-06-09 15:35:48 DEBUG worker 4 got no event to process
2022-06-09 15:35:48 DEBUG worker 4 waiting for new event
2022-06-09 15:35:48 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:48 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:48 DEBUG event added to jobqueue
2022-06-09 15:35:48 DEBUG worker 5 got signal for new job
2022-06-09 15:35:48 DEBUG worker 5 processing event 0xf1eb1820
2022-06-09 15:35:48 DEBUG worker 2 waiting for new event
2022-06-09 15:35:48 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:48 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG worker 1 got signal for new job
2022-06-09 15:35:49 DEBUG worker 1 got no event to process
2022-06-09 15:35:49 DEBUG worker 1 waiting for new event
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 0 got signal for new job
2022-06-09 15:35:49 DEBUG worker 0 processing event 0xf1eb1820
2022-06-09 15:35:49 DEBUG worker 5 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:49 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:49 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:49 DEBUG future event, event thread sleeping 421866ms in cond_timedwait
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 3 got signal for new job
2022-06-09 15:35:49 DEBUG worker 3 processing event 0xf1eb18c0
2022-06-09 15:35:49 DEBUG worker 4 got signal for new job
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG worker 4 processing event 0xf1eb1640
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:49 DEBUG worker 0 waiting for new event
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:49 DEBUG worker 4 waiting for new event
2022-06-09 15:35:49 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:49 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:49 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:49 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:49 DEBUG future event, event thread sleeping 421866ms in cond_timedwait
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 2 got signal for new job
2022-06-09 15:35:49 DEBUG worker 2 processing event 0xf1eb1cd0
2022-06-09 15:35:49 DEBUG worker 3 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 1 got signal for new job
2022-06-09 15:35:49 DEBUG worker 1 processing event 0xf1eb1820
2022-06-09 15:35:49 DEBUG worker 2 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 1 processing event 0xf1eb1870
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG worker 5 got signal for new job
2022-06-09 15:35:49 DEBUG worker 5 got no event to process
2022-06-09 15:35:49 DEBUG worker 5 waiting for new event
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 1 processing event 0xf1eb1820
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG worker 0 got signal for new job
2022-06-09 15:35:49 DEBUG worker 0 got no event to process
2022-06-09 15:35:49 DEBUG worker 0 waiting for new event
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 4 got signal for new job
2022-06-09 15:35:49 DEBUG worker 4 processing event 0xf1eb1870
2022-06-09 15:35:49 DEBUG worker 1 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 3 got signal for new job
2022-06-09 15:35:49 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:49 DEBUG worker 4 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:49 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:49 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:49 DEBUG future event, event thread sleeping 578120ms in cond_timedwait
2022-06-09 15:35:49 DEBUG worker 2 got signal for new job
2022-06-09 15:35:49 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:49 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:49 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:49 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:49 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:49 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:49 DEBUG worker 2 waiting for new event
2022-06-09 15:35:49 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:49 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:49 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:49 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:49 DEBUG future event, event thread sleeping 578120ms in cond_timedwait
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG worker 5 got signal for new job
2022-06-09 15:35:49 DEBUG worker 5 got no event to process
2022-06-09 15:35:49 DEBUG worker 5 waiting for new event
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 0 got signal for new job
2022-06-09 15:35:49 DEBUG worker 0 processing event 0xf1eb1820
2022-06-09 15:35:49 DEBUG worker 3 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 1 got signal for new job
2022-06-09 15:35:49 DEBUG worker 1 processing event 0xf1eb16e0
2022-06-09 15:35:49 DEBUG worker 0 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG worker 4 got signal for new job
2022-06-09 15:35:49 DEBUG worker 4 got no event to process
2022-06-09 15:35:49 DEBUG worker 4 waiting for new event
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG worker 2 got signal for new job
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG worker 2 got no event to process
2022-06-09 15:35:49 DEBUG worker 2 waiting for new event
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 5 got signal for new job
2022-06-09 15:35:49 DEBUG worker 5 processing event 0xf1eb1820
2022-06-09 15:35:49 DEBUG worker 1 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:49 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:49 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:49 DEBUG event added to jobqueue
2022-06-09 15:35:49 DEBUG worker 3 got signal for new job
2022-06-09 15:35:49 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:49 DEBUG worker 5 waiting for new event
2022-06-09 15:35:49 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:49 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 0 got signal for new job
2022-06-09 15:35:50 DEBUG worker 0 processing event 0xf1eb15f0
2022-06-09 15:35:50 DEBUG worker 3 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 4 got signal for new job
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:50 DEBUG worker 0 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 2 got signal for new job
2022-06-09 15:35:50 DEBUG worker 2 processing event 0xf1eb16e0
2022-06-09 15:35:50 DEBUG worker 4 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:50 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:50 DEBUG future event, event thread sleeping 421861ms in cond_timedwait
2022-06-09 15:35:50 DEBUG worker 1 got signal for new job
2022-06-09 15:35:50 DEBUG worker 1 processing event 0xf1eb17d0
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:50 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:50 DEBUG worker 1 waiting for new event
2022-06-09 15:35:50 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:50 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:50 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:50 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:50 DEBUG future event, event thread sleeping 421861ms in cond_timedwait
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 5 got signal for new job
2022-06-09 15:35:50 DEBUG worker 5 processing event 0xf1eb1640
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG worker 2 waiting for new event
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 3 got signal for new job
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1820
2022-06-09 15:35:50 DEBUG worker 5 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:50 DEBUG worker 0 got signal for new job
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG worker 0 got no event to process
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG worker 0 waiting for new event
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG worker 4 got signal for new job
2022-06-09 15:35:50 DEBUG worker 4 got no event to process
2022-06-09 15:35:50 DEBUG worker 4 waiting for new event
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 1 got signal for new job
2022-06-09 15:35:50 DEBUG worker 1 processing event 0xf1eb1690
2022-06-09 15:35:50 DEBUG worker 3 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 1 processing event 0xf1eb1820
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG worker 2 got signal for new job
2022-06-09 15:35:50 DEBUG worker 2 got no event to process
2022-06-09 15:35:50 DEBUG worker 2 waiting for new event
2022-06-09 15:35:50 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:50 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:50 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:50 DEBUG future event, event thread sleeping 578116ms in cond_timedwait
2022-06-09 15:35:50 DEBUG worker 5 got signal for new job
2022-06-09 15:35:50 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:50 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:50 DEBUG im_msvistalog read 4 events
2022-06-09 15:35:50 DEBUG executing statements
2022-06-09 15:35:50 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 0 got signal for new job
2022-06-09 15:35:50 DEBUG worker 0 got no event to process
2022-06-09 15:35:50 DEBUG worker 0 waiting for new event
2022-06-09 15:35:50 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 4 got signal for new job
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:50 DEBUG worker 1 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG om_ssl_write
2022-06-09 15:35:50 DEBUG add socket [21]
2022-06-09 15:35:50 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 3 got signal for new job
2022-06-09 15:35:50 DEBUG worker 3 got no event to process
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 3 waiting for new event
2022-06-09 15:35:50 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:50 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:50 DEBUG executing statements
2022-06-09 15:35:50 DEBUG worker 2 got signal for new job
2022-06-09 15:35:50 DEBUG worker 2 got no event to process
2022-06-09 15:35:50 DEBUG worker 2 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb18c0
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG om_ssl_write
2022-06-09 15:35:50 DEBUG add socket [21]
2022-06-09 15:35:50 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 1 got signal for new job
2022-06-09 15:35:50 DEBUG worker 1 got no event to process
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:50 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:50 DEBUG worker 0 got signal for new job
2022-06-09 15:35:50 DEBUG worker 0 got no event to process
2022-06-09 15:35:50 DEBUG worker 1 waiting for new event
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:50 DEBUG worker 4 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:50 DEBUG executing statements
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 3 got signal for new job
2022-06-09 15:35:50 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1640
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG worker 0 waiting for new event
2022-06-09 15:35:50 DEBUG om_ssl_write
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG add socket [21]
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:50 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 1 got signal for new job
2022-06-09 15:35:50 DEBUG worker 1 got no event to process
2022-06-09 15:35:50 DEBUG worker 1 waiting for new event
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1690
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG om_ssl_write
2022-06-09 15:35:50 DEBUG add socket [21]
2022-06-09 15:35:50 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:50 DEBUG executing statements
2022-06-09 15:35:50 DEBUG worker 2 got signal for new job
2022-06-09 15:35:50 DEBUG worker 2 got no event to process
2022-06-09 15:35:50 DEBUG worker 2 waiting for new event
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:50 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG worker 4 got signal for new job
2022-06-09 15:35:50 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:50 DEBUG worker 4 got no event to process
2022-06-09 15:35:50 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:50 DEBUG worker 5 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1960
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:50 DEBUG RESUME: eventlog
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:50 DEBUG worker 0 got signal for new job
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG worker 0 got no event to process
2022-06-09 15:35:50 DEBUG om_ssl_write
2022-06-09 15:35:50 DEBUG worker 4 waiting for new event
2022-06-09 15:35:50 DEBUG add socket [21]
2022-06-09 15:35:50 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:50 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:50 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:50 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:50 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:50 DEBUG future event, event thread sleeping 578116ms in cond_timedwait
2022-06-09 15:35:50 DEBUG worker 0 waiting for new event
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 1 got signal for new job
2022-06-09 15:35:50 DEBUG worker 1 got no event to process
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:50 DEBUG RESUME: eventlog
2022-06-09 15:35:50 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:50 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:50 DEBUG worker 2 got signal for new job
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:50 DEBUG worker 1 waiting for new event
2022-06-09 15:35:50 DEBUG worker 2 got no event to process
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:50 DEBUG worker 5 got signal for new job
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG worker 5 processing event 0xf1eb1730
2022-06-09 15:35:50 DEBUG RESUME: eventlog
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:50 DEBUG worker 3 waiting for new event
2022-06-09 15:35:50 DEBUG worker 2 waiting for new event
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 4 got signal for new job
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb15f0
2022-06-09 15:35:50 DEBUG worker 5 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:50 DEBUG om_ssl_write
2022-06-09 15:35:50 DEBUG add socket [21]
2022-06-09 15:35:50 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:50 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 0 got signal for new job
2022-06-09 15:35:50 DEBUG worker 0 processing event 0xf1eb1c80
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG RESUME: eventlog
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:50 DEBUG worker 0 waiting for new event
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb17d0
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG worker 1 got signal for new job
2022-06-09 15:35:50 DEBUG worker 1 got no event to process
2022-06-09 15:35:50 DEBUG worker 1 waiting for new event
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 3 got signal for new job
2022-06-09 15:35:50 DEBUG worker 3 processing event 0xf1eb1730
2022-06-09 15:35:50 DEBUG worker 4 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 2 got signal for new job
2022-06-09 15:35:50 DEBUG worker 2 processing event 0xf1eb18c0
2022-06-09 15:35:50 DEBUG worker 3 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 5 got signal for new job
2022-06-09 15:35:50 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:50 DEBUG worker 2 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 0 got signal for new job
2022-06-09 15:35:50 DEBUG worker 0 processing event 0xf1eb1960
2022-06-09 15:35:50 DEBUG worker 5 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 1 got signal for new job
2022-06-09 15:35:50 DEBUG worker 1 processing event 0xf1eb18c0
2022-06-09 15:35:50 DEBUG worker 0 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:50 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:50 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:50 DEBUG event added to jobqueue
2022-06-09 15:35:50 DEBUG worker 4 got signal for new job
2022-06-09 15:35:50 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:50 DEBUG worker 1 waiting for new event
2022-06-09 15:35:50 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:50 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 3 got signal for new job
2022-06-09 15:35:51 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:51 DEBUG worker 4 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 2 got signal for new job
2022-06-09 15:35:51 DEBUG worker 2 processing event 0xf1eb15f0
2022-06-09 15:35:51 DEBUG worker 3 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:51 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:51 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:51 DEBUG future event, event thread sleeping 409285ms in cond_timedwait
2022-06-09 15:35:51 DEBUG worker 5 got signal for new job
2022-06-09 15:35:51 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:51 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:51 DEBUG worker 5 waiting for new event
2022-06-09 15:35:51 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:51 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:51 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:51 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:51 DEBUG future event, event thread sleeping 409285ms in cond_timedwait
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 2 processing event 0xf1eb1820
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG worker 0 got signal for new job
2022-06-09 15:35:51 DEBUG worker 0 got no event to process
2022-06-09 15:35:51 DEBUG worker 0 waiting for new event
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG worker 1 got signal for new job
2022-06-09 15:35:51 DEBUG worker 1 got no event to process
2022-06-09 15:35:51 DEBUG worker 1 waiting for new event
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG worker 4 got signal for new job
2022-06-09 15:35:51 DEBUG worker 4 got no event to process
2022-06-09 15:35:51 DEBUG worker 4 waiting for new event
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 2 processing event 0xf1eb15f0
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG worker 3 got signal for new job
2022-06-09 15:35:51 DEBUG worker 3 got no event to process
2022-06-09 15:35:51 DEBUG worker 3 waiting for new event
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 5 got signal for new job
2022-06-09 15:35:51 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:51 DEBUG worker 2 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 0 got signal for new job
2022-06-09 15:35:51 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:51 DEBUG worker 5 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 1 got signal for new job
2022-06-09 15:35:51 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:51 DEBUG worker 0 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:51 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:51 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:51 DEBUG future event, event thread sleeping 578119ms in cond_timedwait
2022-06-09 15:35:51 DEBUG worker 4 got signal for new job
2022-06-09 15:35:51 DEBUG worker 4 processing event 0xf1eb1d20
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:51 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:51 DEBUG im_msvistalog read 5 events
2022-06-09 15:35:51 DEBUG executing statements
2022-06-09 15:35:51 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 3 got signal for new job
2022-06-09 15:35:51 DEBUG worker 3 got no event to process
2022-06-09 15:35:51 DEBUG worker 3 waiting for new event
2022-06-09 15:35:51 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG om_ssl_write
2022-06-09 15:35:51 DEBUG add socket [21]
2022-06-09 15:35:51 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 5 got signal for new job
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 2 got signal for new job
2022-06-09 15:35:51 DEBUG worker 0 got signal for new job
2022-06-09 15:35:51 DEBUG worker 0 got no event to process
2022-06-09 15:35:51 DEBUG worker 0 waiting for new event
2022-06-09 15:35:51 DEBUG worker 2 got no event to process
2022-06-09 15:35:51 DEBUG worker 5 got no event to process
2022-06-09 15:35:51 DEBUG om_ssl sent 1202 bytes
2022-06-09 15:35:51 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:51 DEBUG worker 2 waiting for new event
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG worker 1 waiting for new event
2022-06-09 15:35:51 DEBUG worker 5 processing event 0xf1eb1730
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG executing statements
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 3 got signal for new job
2022-06-09 15:35:51 DEBUG worker 3 processing event 0xf1eb18c0
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG om_ssl_write
2022-06-09 15:35:51 DEBUG add socket [21]
2022-06-09 15:35:51 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:51 DEBUG worker 5 waiting for new event
2022-06-09 15:35:51 DEBUG worker 0 got signal for new job
2022-06-09 15:35:51 DEBUG worker 0 got no event to process
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG worker 0 waiting for new event
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG om_ssl sent 1421 bytes
2022-06-09 15:35:51 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG worker 3 processing event 0xf1eb16e0
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG executing statements
2022-06-09 15:35:51 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 3 processing event 0xf1eb1820
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG om_ssl_write
2022-06-09 15:35:51 DEBUG add socket [21]
2022-06-09 15:35:51 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 1 got signal for new job
2022-06-09 15:35:51 DEBUG worker 1 got no event to process
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG worker 2 got signal for new job
2022-06-09 15:35:51 DEBUG worker 2 got no event to process
2022-06-09 15:35:51 DEBUG worker 1 waiting for new event
2022-06-09 15:35:51 DEBUG om_ssl sent 1190 bytes
2022-06-09 15:35:51 DEBUG worker 2 waiting for new event
2022-06-09 15:35:51 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:51 DEBUG executing statements
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:51 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 5 got signal for new job
2022-06-09 15:35:51 DEBUG worker 5 processing event 0xf1eb1cd0
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG om_ssl_write
2022-06-09 15:35:51 DEBUG add socket [21]
2022-06-09 15:35:51 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:51 DEBUG worker 3 waiting for new event
2022-06-09 15:35:51 DEBUG worker 0 got signal for new job
2022-06-09 15:35:51 DEBUG worker 0 got no event to process
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG worker 0 waiting for new event
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG om_ssl sent 1190 bytes
2022-06-09 15:35:51 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG executing statements
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 1 got signal for new job
2022-06-09 15:35:51 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:51 DEBUG worker 1 processing event 0xf1eb15f0
2022-06-09 15:35:51 DEBUG worker 5 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG om_ssl_write
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG add socket [21]
2022-06-09 15:35:51 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:51 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:51 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG worker 2 got signal for new job
2022-06-09 15:35:51 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG RESUME: eventlog
2022-06-09 15:35:51 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:51 DEBUG worker 4 processing event 0xf1eb18c0
2022-06-09 15:35:51 DEBUG om_ssl sent 1423 bytes
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:51 DEBUG RESUME: eventlog
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:51 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:51 DEBUG worker 2 waiting for new event
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 3 got signal for new job
2022-06-09 15:35:51 DEBUG worker 3 processing event 0xf1eb1640
2022-06-09 15:35:51 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:51 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:51 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:51 DEBUG future event, event thread sleeping 578119ms in cond_timedwait
2022-06-09 15:35:51 DEBUG worker 4 processing event 0xf1eb1870
2022-06-09 15:35:51 DEBUG worker 0 got signal for new job
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG RESUME: eventlog
2022-06-09 15:35:51 DEBUG worker 0 got no event to process
2022-06-09 15:35:51 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:51 DEBUG worker 1 waiting for new event
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 0 processing event 0xf1eb1690
2022-06-09 15:35:51 DEBUG worker 4 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:51 DEBUG worker 5 got signal for new job
2022-06-09 15:35:51 DEBUG om_ssl_write
2022-06-09 15:35:51 DEBUG worker 5 got no event to process
2022-06-09 15:35:51 DEBUG add socket [21]
2022-06-09 15:35:51 DEBUG worker 3 waiting for new event
2022-06-09 15:35:51 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:51 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:51 DEBUG worker 5 waiting for new event
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 2 got signal for new job
2022-06-09 15:35:51 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:51 DEBUG worker 0 processing event 0xf1eb1960
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG RESUME: eventlog
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:51 DEBUG worker 0 waiting for new event
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 2 processing event 0xf1eb1870
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG worker 1 got signal for new job
2022-06-09 15:35:51 DEBUG worker 1 got no event to process
2022-06-09 15:35:51 DEBUG worker 1 waiting for new event
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 4 got signal for new job
2022-06-09 15:35:51 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:51 DEBUG worker 2 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 3 got signal for new job
2022-06-09 15:35:51 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:51 DEBUG worker 4 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 5 got signal for new job
2022-06-09 15:35:51 DEBUG worker 5 processing event 0xf1eb16e0
2022-06-09 15:35:51 DEBUG worker 3 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 0 got signal for new job
2022-06-09 15:35:51 DEBUG worker 0 processing event 0xf1eb1870
2022-06-09 15:35:51 DEBUG worker 5 waiting for new event
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:51 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:51 DEBUG event added to jobqueue
2022-06-09 15:35:51 DEBUG worker 1 got signal for new job
2022-06-09 15:35:51 DEBUG worker 1 processing event 0xf1eb16e0
2022-06-09 15:35:51 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:51 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:51 DEBUG worker 0 waiting for new event
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 1 processing event 0xf1eb1c80
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG worker 2 got signal for new job
2022-06-09 15:35:52 DEBUG worker 2 got no event to process
2022-06-09 15:35:52 DEBUG worker 2 waiting for new event
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 4 got signal for new job
2022-06-09 15:35:52 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:52 DEBUG worker 1 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 3 got signal for new job
2022-06-09 15:35:52 DEBUG worker 3 processing event 0xf1eb15f0
2022-06-09 15:35:52 DEBUG worker 4 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:52 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:52 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:52 DEBUG future event, event thread sleeping 420712ms in cond_timedwait
2022-06-09 15:35:52 DEBUG worker 5 got signal for new job
2022-06-09 15:35:52 DEBUG worker 5 processing event 0xf1eb17d0
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:52 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:52 DEBUG worker 5 waiting for new event
2022-06-09 15:35:52 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:52 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:52 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:52 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:52 DEBUG future event, event thread sleeping 420712ms in cond_timedwait
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 0 got signal for new job
2022-06-09 15:35:52 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:52 DEBUG worker 3 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 2 got signal for new job
2022-06-09 15:35:52 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:52 DEBUG worker 0 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 1 got signal for new job
2022-06-09 15:35:52 DEBUG worker 1 processing event 0xf1eb1870
2022-06-09 15:35:52 DEBUG worker 2 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 4 got signal for new job
2022-06-09 15:35:52 DEBUG worker 1 waiting for new event
2022-06-09 15:35:52 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 5 got signal for new job
2022-06-09 15:35:52 DEBUG worker 4 waiting for new event
2022-06-09 15:35:52 DEBUG worker 5 processing event 0xf1eb1870
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 3 got signal for new job
2022-06-09 15:35:52 DEBUG worker 3 processing event 0xf1eb1c80
2022-06-09 15:35:52 DEBUG worker 5 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:52 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:52 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:52 DEBUG future event, event thread sleeping 578119ms in cond_timedwait
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 0 got signal for new job
2022-06-09 15:35:52 DEBUG worker 0 processing event 0xf1eb1820
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:52 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:52 DEBUG EvtNext returned ERROR_NO_MORE_ITEMS
2022-06-09 15:35:52 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:52 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:52 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:52 DEBUG worker 2 got signal for new job
2022-06-09 15:35:52 DEBUG worker 2 processing event 0xf1eb1d20
2022-06-09 15:35:52 DEBUG worker 3 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG worker 0 waiting for new event
2022-06-09 15:35:52 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:52 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:52 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:52 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:52 DEBUG future event, event thread sleeping 578119ms in cond_timedwait
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 1 got signal for new job
2022-06-09 15:35:52 DEBUG worker 1 processing event 0xf1eb17d0
2022-06-09 15:35:52 DEBUG worker 2 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 4 got signal for new job
2022-06-09 15:35:52 DEBUG worker 4 processing event 0xf1eb1820
2022-06-09 15:35:52 DEBUG worker 1 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 5 got signal for new job
2022-06-09 15:35:52 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:52 DEBUG worker 4 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG worker 3 got signal for new job
2022-06-09 15:35:52 DEBUG worker 3 got no event to process
2022-06-09 15:35:52 DEBUG worker 3 waiting for new event
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 0 got signal for new job
2022-06-09 15:35:52 DEBUG worker 0 processing event 0xf1eb1640
2022-06-09 15:35:52 DEBUG worker 5 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:52 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:52 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:52 DEBUG event added to jobqueue
2022-06-09 15:35:52 DEBUG worker 2 got signal for new job
2022-06-09 15:35:52 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:52 DEBUG worker 0 waiting for new event
2022-06-09 15:35:52 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:52 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 1 got signal for new job
2022-06-09 15:35:53 DEBUG worker 2 waiting for new event
2022-06-09 15:35:53 DEBUG worker 1 processing event 0xf1eb1690
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 1 processing event 0xf1eb1d20
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG worker 4 got signal for new job
2022-06-09 15:35:53 DEBUG worker 4 got no event to process
2022-06-09 15:35:53 DEBUG worker 4 waiting for new event
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 3 got signal for new job
2022-06-09 15:35:53 DEBUG worker 3 processing event 0xf1eb1730
2022-06-09 15:35:53 DEBUG worker 1 waiting for new event
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:53 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:53 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:53 DEBUG future event, event thread sleeping 419646ms in cond_timedwait
2022-06-09 15:35:53 DEBUG worker 5 got signal for new job
2022-06-09 15:35:53 DEBUG worker 5 processing event 0xf1eb16e0
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:53 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:53 DEBUG worker 5 waiting for new event
2022-06-09 15:35:53 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:53 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:53 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:53 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:53 DEBUG future event, event thread sleeping 419646ms in cond_timedwait
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG worker 0 got signal for new job
2022-06-09 15:35:53 DEBUG worker 0 got no event to process
2022-06-09 15:35:53 DEBUG worker 0 waiting for new event
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 2 got signal for new job
2022-06-09 15:35:53 DEBUG worker 3 waiting for new event
2022-06-09 15:35:53 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 4 got signal for new job
2022-06-09 15:35:53 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:53 DEBUG worker 2 waiting for new event
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 1 got signal for new job
2022-06-09 15:35:53 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:53 DEBUG worker 4 waiting for new event
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 5 got signal for new job
2022-06-09 15:35:53 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:53 DEBUG worker 1 waiting for new event
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 0 got signal for new job
2022-06-09 15:35:53 DEBUG worker 0 processing event 0xf1eb1be0
2022-06-09 15:35:53 DEBUG worker 5 waiting for new event
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 3 got signal for new job
2022-06-09 15:35:53 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:53 DEBUG worker 0 waiting for new event
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:53 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:53 DEBUG future event, event thread sleeping 578113ms in cond_timedwait
2022-06-09 15:35:53 DEBUG worker 2 got signal for new job
2022-06-09 15:35:53 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:53 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:53 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:53 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:53 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:53 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:53 DEBUG worker 2 waiting for new event
2022-06-09 15:35:53 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:53 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:53 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:53 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:53 DEBUG future event, event thread sleeping 578113ms in cond_timedwait
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 3 processing event 0xf1eb1690
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG worker 4 got signal for new job
2022-06-09 15:35:53 DEBUG worker 4 got no event to process
2022-06-09 15:35:53 DEBUG worker 4 waiting for new event
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG worker 1 got signal for new job
2022-06-09 15:35:53 DEBUG worker 1 got no event to process
2022-06-09 15:35:53 DEBUG worker 1 waiting for new event
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG worker 5 got signal for new job
2022-06-09 15:35:53 DEBUG worker 5 got no event to process
2022-06-09 15:35:53 DEBUG worker 5 waiting for new event
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG worker 0 got signal for new job
2022-06-09 15:35:53 DEBUG worker 0 got no event to process
2022-06-09 15:35:53 DEBUG worker 0 waiting for new event
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 2 got signal for new job
2022-06-09 15:35:53 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:53 DEBUG worker 3 waiting for new event
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:53 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:53 DEBUG event added to jobqueue
2022-06-09 15:35:53 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:53 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:53 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:53 DEBUG worker 4 got signal for new job
2022-06-09 15:35:53 DEBUG worker 4 got no event to process
2022-06-09 15:35:53 DEBUG worker 4 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 1 got signal for new job
2022-06-09 15:35:54 DEBUG worker 1 got no event to process
2022-06-09 15:35:54 DEBUG worker 1 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 5 got signal for new job
2022-06-09 15:35:54 DEBUG worker 5 got no event to process
2022-06-09 15:35:54 DEBUG worker 5 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 0 got signal for new job
2022-06-09 15:35:54 DEBUG worker 0 got no event to process
2022-06-09 15:35:54 DEBUG worker 0 waiting for new event
2022-06-09 15:35:54 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:54 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:54 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:54 DEBUG future event, event thread sleeping 421864ms in cond_timedwait
2022-06-09 15:35:54 DEBUG worker 3 got signal for new job
2022-06-09 15:35:54 DEBUG worker 3 processing event 0xf1eb1870
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:54 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:54 DEBUG worker 3 waiting for new event
2022-06-09 15:35:54 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:54 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:54 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:54 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:54 DEBUG future event, event thread sleeping 421864ms in cond_timedwait
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1690
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 4 got signal for new job
2022-06-09 15:35:54 DEBUG worker 4 got no event to process
2022-06-09 15:35:54 DEBUG worker 4 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 1 got signal for new job
2022-06-09 15:35:54 DEBUG worker 1 got no event to process
2022-06-09 15:35:54 DEBUG worker 1 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 5 got signal for new job
2022-06-09 15:35:54 DEBUG worker 5 got no event to process
2022-06-09 15:35:54 DEBUG worker 5 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 0 got signal for new job
2022-06-09 15:35:54 DEBUG worker 0 got no event to process
2022-06-09 15:35:54 DEBUG worker 0 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1820
2022-06-09 15:35:54 DEBUG worker 3 got signal for new job
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG worker 3 got no event to process
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 3 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1640
2022-06-09 15:35:54 DEBUG worker 4 got signal for new job
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG worker 4 got no event to process
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 4 waiting for new event
2022-06-09 15:35:54 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:54 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:54 DEBUG future event, event thread sleeping 578114ms in cond_timedwait
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 1 got signal for new job
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb15f0
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:54 DEBUG worker 5 got signal for new job
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 5 got no event to process
2022-06-09 15:35:54 DEBUG worker 5 waiting for new event
2022-06-09 15:35:54 DEBUG im_msvistalog read 10 events
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb1640
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG om_ssl_write
2022-06-09 15:35:54 DEBUG add socket [21]
2022-06-09 15:35:54 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG om_ssl sent 960 bytes
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:54 DEBUG worker 3 got signal for new job
2022-06-09 15:35:54 DEBUG worker 3 got no event to process
2022-06-09 15:35:54 DEBUG worker 5 got signal for new job
2022-06-09 15:35:54 DEBUG worker 5 got no event to process
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:54 DEBUG worker 3 waiting for new event
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:54 DEBUG worker 0 got signal for new job
2022-06-09 15:35:54 DEBUG worker 0 got no event to process
2022-06-09 15:35:54 DEBUG worker 4 got signal for new job
2022-06-09 15:35:54 DEBUG worker 4 got no event to process
2022-06-09 15:35:54 DEBUG worker 5 waiting for new event
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 1
2022-06-09 15:35:54 DEBUG worker 0 waiting for new event
2022-06-09 15:35:54 DEBUG worker 4 waiting for new event
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG om_ssl sent 1443 bytes
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 2
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG om_ssl sent 1343 bytes
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb17d0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG om_ssl_write
2022-06-09 15:35:54 DEBUG add socket [21]
2022-06-09 15:35:54 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:54 DEBUG worker 3 got signal for new job
2022-06-09 15:35:54 DEBUG worker 3 got no event to process
2022-06-09 15:35:54 DEBUG worker 5 got signal for new job
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG worker 5 got no event to process
2022-06-09 15:35:54 DEBUG worker 3 waiting for new event
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG om_ssl sent 954 bytes
2022-06-09 15:35:54 DEBUG worker 5 waiting for new event
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG om_ssl sent 966 bytes
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb1820
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG om_ssl_write
2022-06-09 15:35:54 DEBUG add socket [21]
2022-06-09 15:35:54 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb17d0
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 4 got signal for new job
2022-06-09 15:35:54 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:54 DEBUG worker 4 got no event to process
2022-06-09 15:35:54 DEBUG worker 0 got signal for new job
2022-06-09 15:35:54 DEBUG worker 0 got no event to process
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 4 processing event 0xf1eb1960
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG om_ssl_write
2022-06-09 15:35:54 DEBUG add socket [21]
2022-06-09 15:35:54 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:54 DEBUG worker 0 waiting for new event
2022-06-09 15:35:54 DEBUG worker 1 waiting for new event
2022-06-09 15:35:54 DEBUG worker 3 got signal for new job
2022-06-09 15:35:54 DEBUG worker 3 got no event to process
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 3 waiting for new event
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG om_ssl sent 964 bytes
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:54 DEBUG worker 5 got signal for new job
2022-06-09 15:35:54 DEBUG worker 5 got no event to process
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG worker 5 processing event 0xf1eb1870
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 1
2022-06-09 15:35:54 DEBUG worker 4 waiting for new event
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 2
2022-06-09 15:35:54 DEBUG worker 5 processing event 0xf1eb1cd0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG om_ssl_write
2022-06-09 15:35:54 DEBUG add socket [21]
2022-06-09 15:35:54 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 2)
2022-06-09 15:35:54 DEBUG worker 0 got signal for new job
2022-06-09 15:35:54 DEBUG worker 0 got no event to process
2022-06-09 15:35:54 DEBUG worker 1 got signal for new job
2022-06-09 15:35:54 DEBUG worker 1 got no event to process
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG executing statements
2022-06-09 15:35:54 DEBUG before nx_logqueue_push, size: 3
2022-06-09 15:35:54 DEBUG worker 0 waiting for new event
2022-06-09 15:35:54 DEBUG worker 1 waiting for new event
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG om_ssl sent 960 bytes
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 4
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 2)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:54 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:54 DEBUG om_ssl sent 961 bytes
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 3
2022-06-09 15:35:54 DEBUG RESUME: eventlog
2022-06-09 15:35:54 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 1)
2022-06-09 15:35:54 DEBUG worker 2 waiting for new event
2022-06-09 15:35:54 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:54 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:54 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:54 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:54 DEBUG future event, event thread sleeping 578114ms in cond_timedwait
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG om_ssl sent 1026 bytes
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 2
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:54 DEBUG worker 3 got signal for new job
2022-06-09 15:35:54 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG RESUME: eventlog
2022-06-09 15:35:54 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG worker 3 waiting for new event
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 4 got signal for new job
2022-06-09 15:35:54 DEBUG worker 4 processing event 0xf1eb15f0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG RESUME: eventlog
2022-06-09 15:35:54 DEBUG om_ssl sent 1343 bytes
2022-06-09 15:35:54 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:54 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:54 DEBUG worker 4 processing event 0xf1eb1730
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG RESUME: eventlog
2022-06-09 15:35:54 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:54 DEBUG worker 4 waiting for new event
2022-06-09 15:35:54 DEBUG worker 0 got signal for new job
2022-06-09 15:35:54 DEBUG worker 0 got no event to process
2022-06-09 15:35:54 DEBUG worker 0 waiting for new event
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 1 got signal for new job
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb1d20
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:54 DEBUG om_ssl_write
2022-06-09 15:35:54 DEBUG add socket [21]
2022-06-09 15:35:54 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:54 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:54 DEBUG worker 5 waiting for new event
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:54 DEBUG worker 2 got signal for new job
2022-06-09 15:35:54 DEBUG RESUME: eventlog
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:54 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG worker 1 waiting for new event
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 3 got signal for new job
2022-06-09 15:35:54 DEBUG worker 2 waiting for new event
2022-06-09 15:35:54 DEBUG worker 3 processing event 0xf1eb1be0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 4 got signal for new job
2022-06-09 15:35:54 DEBUG worker 4 processing event 0xf1eb1960
2022-06-09 15:35:54 DEBUG worker 3 waiting for new event
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 0 got signal for new job
2022-06-09 15:35:54 DEBUG worker 0 got no event to process
2022-06-09 15:35:54 DEBUG worker 0 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 5 got signal for new job
2022-06-09 15:35:54 DEBUG worker 4 waiting for new event
2022-06-09 15:35:54 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 5 processing event 0xf1eb1690
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG worker 1 got signal for new job
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:54 DEBUG worker 1 got no event to process
2022-06-09 15:35:54 DEBUG worker 1 waiting for new event
2022-06-09 15:35:54 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:54 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:54 DEBUG event added to jobqueue
2022-06-09 15:35:54 DEBUG worker 2 got signal for new job
2022-06-09 15:35:54 DEBUG worker 2 processing event 0xf1eb1be0
2022-06-09 15:35:54 DEBUG worker 5 waiting for new event
2022-06-09 15:35:54 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:54 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 3 got signal for new job
2022-06-09 15:35:55 DEBUG worker 3 got no event to process
2022-06-09 15:35:55 DEBUG worker 3 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 0 got signal for new job
2022-06-09 15:35:55 DEBUG worker 0 got no event to process
2022-06-09 15:35:55 DEBUG worker 0 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 4 got signal for new job
2022-06-09 15:35:55 DEBUG worker 4 got no event to process
2022-06-09 15:35:55 DEBUG worker 4 waiting for new event
2022-06-09 15:35:55 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:55 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:55 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:55 DEBUG future event, event thread sleeping 420630ms in cond_timedwait
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:55 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:55 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:55 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:55 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:55 DEBUG future event, event thread sleeping 420630ms in cond_timedwait
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 5 got signal for new job
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1c80
2022-06-09 15:35:55 DEBUG worker 2 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 3 got signal for new job
2022-06-09 15:35:55 DEBUG worker 3 processing event 0xf1eb1820
2022-06-09 15:35:55 DEBUG worker 5 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 0 got signal for new job
2022-06-09 15:35:55 DEBUG worker 0 processing event 0xf1eb1730
2022-06-09 15:35:55 DEBUG worker 3 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 0 processing event 0xf1eb15f0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 4 got signal for new job
2022-06-09 15:35:55 DEBUG worker 4 got no event to process
2022-06-09 15:35:55 DEBUG worker 4 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG worker 1 got no event to process
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 got signal for new job
2022-06-09 15:35:55 DEBUG worker 0 waiting for new event
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1cd0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 5 got signal for new job
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:55 DEBUG worker 2 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:55 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:55 DEBUG future event, event thread sleeping 578113ms in cond_timedwait
2022-06-09 15:35:55 DEBUG worker 3 got signal for new job
2022-06-09 15:35:55 DEBUG worker 3 processing event 0xf1eb16e0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:55 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:55 DEBUG im_msvistalog read 5 events
2022-06-09 15:35:55 DEBUG executing statements
2022-06-09 15:35:55 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 4 got signal for new job
2022-06-09 15:35:55 DEBUG worker 4 got no event to process
2022-06-09 15:35:55 DEBUG worker 4 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 0 got signal for new job
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG om_ssl sent 745 bytes
2022-06-09 15:35:55 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG worker 0 got no event to process
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG worker 1 got no event to process
2022-06-09 15:35:55 DEBUG worker 2 got signal for new job
2022-06-09 15:35:55 DEBUG worker 2 got no event to process
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 0 processing event 0xf1eb1c80
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 2 waiting for new event
2022-06-09 15:35:55 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:55 DEBUG worker 5 waiting for new event
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 4 got signal for new job
2022-06-09 15:35:55 DEBUG worker 4 processing event 0xf1eb1d20
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG worker 0 waiting for new event
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG executing statements
2022-06-09 15:35:55 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG worker 1 got no event to process
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 5 got signal for new job
2022-06-09 15:35:55 DEBUG worker 5 got no event to process
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG om_ssl sent 868 bytes
2022-06-09 15:35:55 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG worker 2 got signal for new job
2022-06-09 15:35:55 DEBUG worker 2 got no event to process
2022-06-09 15:35:55 DEBUG worker 5 waiting for new event
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1820
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:55 DEBUG worker 4 waiting for new event
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1d20
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG worker 0 got signal for new job
2022-06-09 15:35:55 DEBUG worker 0 got no event to process
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 2 waiting for new event
2022-06-09 15:35:55 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG executing statements
2022-06-09 15:35:55 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG worker 1 got no event to process
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 5 got signal for new job
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1cd0
2022-06-09 15:35:55 DEBUG worker 0 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 4 got signal for new job
2022-06-09 15:35:55 DEBUG worker 4 got no event to process
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 4 waiting for new event
2022-06-09 15:35:55 DEBUG om_ssl sent 1002 bytes
2022-06-09 15:35:55 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 got signal for new job
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:55 DEBUG worker 5 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb18c0
2022-06-09 15:35:55 DEBUG executing statements
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG worker 1 got no event to process
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG om_ssl sent 753 bytes
2022-06-09 15:35:55 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1640
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 5 got signal for new job
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:55 DEBUG worker 2 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG worker 0 got signal for new job
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG worker 0 got no event to process
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG worker 4 got signal for new job
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG worker 4 got no event to process
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG worker 0 waiting for new event
2022-06-09 15:35:55 DEBUG worker 4 waiting for new event
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG executing statements
2022-06-09 15:35:55 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG worker 1 got no event to process
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:55 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 got signal for new job
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1730
2022-06-09 15:35:55 DEBUG worker 5 waiting for new event
2022-06-09 15:35:55 DEBUG worker 3 processing event 0xf1eb1960
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG RESUME: eventlog
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG worker 3 waiting for new event
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:55 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:55 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:55 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:55 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:55 DEBUG future event, event thread sleeping 578113ms in cond_timedwait
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 0 got signal for new job
2022-06-09 15:35:55 DEBUG worker 0 processing event 0xf1eb1c80
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG om_ssl sent 1074 bytes
2022-06-09 15:35:55 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:55 DEBUG RESUME: eventlog
2022-06-09 15:35:55 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG worker 4 got signal for new job
2022-06-09 15:35:55 DEBUG worker 4 got no event to process
2022-06-09 15:35:55 DEBUG worker 0 waiting for new event
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:55 DEBUG RESUME: eventlog
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 2 waiting for new event
2022-06-09 15:35:55 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:55 DEBUG worker 4 waiting for new event
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 5 got signal for new job
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1be0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:55 DEBUG om_ssl_write
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG add socket [21]
2022-06-09 15:35:55 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:55 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 3 got signal for new job
2022-06-09 15:35:55 DEBUG worker 3 processing event 0xf1eb1730
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb1d20
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG RESUME: eventlog
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:55 DEBUG worker 3 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 5 processing event 0xf1eb15f0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 0 got signal for new job
2022-06-09 15:35:55 DEBUG worker 0 got no event to process
2022-06-09 15:35:55 DEBUG worker 0 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 2 got signal for new job
2022-06-09 15:35:55 DEBUG worker 2 processing event 0xf1eb1690
2022-06-09 15:35:55 DEBUG worker 5 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 4 got signal for new job
2022-06-09 15:35:55 DEBUG worker 2 waiting for new event
2022-06-09 15:35:55 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 4 processing event 0xf1eb1be0
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG worker 1 got signal for new job
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 1 got no event to process
2022-06-09 15:35:55 DEBUG worker 1 waiting for new event
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 3 got signal for new job
2022-06-09 15:35:55 DEBUG worker 4 waiting for new event
2022-06-09 15:35:55 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 0 got signal for new job
2022-06-09 15:35:55 DEBUG worker 0 processing event 0xf1eb1960
2022-06-09 15:35:55 DEBUG worker 3 waiting for new event
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:55 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:55 DEBUG event added to jobqueue
2022-06-09 15:35:55 DEBUG worker 0 processing event 0xf1eb15f0
2022-06-09 15:35:55 DEBUG worker 5 got signal for new job
2022-06-09 15:35:55 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:55 DEBUG worker 5 got no event to process
2022-06-09 15:35:55 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:55 DEBUG worker 5 waiting for new event
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 0 processing event 0xf1eb1640
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG worker 2 got signal for new job
2022-06-09 15:35:56 DEBUG worker 2 got no event to process
2022-06-09 15:35:56 DEBUG worker 2 waiting for new event
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG worker 1 got signal for new job
2022-06-09 15:35:56 DEBUG worker 1 got no event to process
2022-06-09 15:35:56 DEBUG worker 1 waiting for new event
2022-06-09 15:35:56 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:56 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:56 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:56 DEBUG future event, event thread sleeping 410337ms in cond_timedwait
2022-06-09 15:35:56 DEBUG worker 4 got signal for new job
2022-06-09 15:35:56 DEBUG worker 4 processing event 0xf1eb1870
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:56 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:56 DEBUG worker 4 waiting for new event
2022-06-09 15:35:56 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:56 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:56 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:56 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:56 DEBUG future event, event thread sleeping 410337ms in cond_timedwait
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 0 processing event 0xf1eb1c80
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG worker 3 got signal for new job
2022-06-09 15:35:56 DEBUG worker 3 got no event to process
2022-06-09 15:35:56 DEBUG worker 3 waiting for new event
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 0 processing event 0xf1eb1870
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG worker 5 got signal for new job
2022-06-09 15:35:56 DEBUG worker 5 got no event to process
2022-06-09 15:35:56 DEBUG worker 5 waiting for new event
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 2 got signal for new job
2022-06-09 15:35:56 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:56 DEBUG worker 0 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 1 got signal for new job
2022-06-09 15:35:56 DEBUG worker 1 processing event 0xf1eb1870
2022-06-09 15:35:56 DEBUG worker 2 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 4 got signal for new job
2022-06-09 15:35:56 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:56 DEBUG worker 1 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 3 got signal for new job
2022-06-09 15:35:56 DEBUG worker 3 processing event 0xf1eb1690
2022-06-09 15:35:56 DEBUG worker 4 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 5 got signal for new job
2022-06-09 15:35:56 DEBUG worker 3 waiting for new event
2022-06-09 15:35:56 DEBUG worker 5 processing event 0xf1eb1730
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:56 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:56 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:56 DEBUG future event, event thread sleeping 578111ms in cond_timedwait
2022-06-09 15:35:56 DEBUG worker 0 got signal for new job
2022-06-09 15:35:56 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:56 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:56 DEBUG im_msvistalog read 5 events
2022-06-09 15:35:56 DEBUG executing statements
2022-06-09 15:35:56 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 2 got signal for new job
2022-06-09 15:35:56 DEBUG worker 2 got no event to process
2022-06-09 15:35:56 DEBUG worker 2 waiting for new event
2022-06-09 15:35:56 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 1 got signal for new job
2022-06-09 15:35:56 DEBUG worker 5 waiting for new event
2022-06-09 15:35:56 DEBUG worker 1 processing event 0xf1eb1b90
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG om_ssl_write
2022-06-09 15:35:56 DEBUG add socket [21]
2022-06-09 15:35:56 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 4 got signal for new job
2022-06-09 15:35:56 DEBUG worker 4 got no event to process
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 4 waiting for new event
2022-06-09 15:35:56 DEBUG om_ssl sent 1032 bytes
2022-06-09 15:35:56 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG worker 1 processing event 0xf1eb1be0
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG executing statements
2022-06-09 15:35:56 DEBUG worker 3 got signal for new job
2022-06-09 15:35:56 DEBUG worker 3 got no event to process
2022-06-09 15:35:56 DEBUG worker 3 waiting for new event
2022-06-09 15:35:56 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:56 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 2 got signal for new job
2022-06-09 15:35:56 DEBUG worker 2 processing event 0xf1eb1c80
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG om_ssl_write
2022-06-09 15:35:56 DEBUG add socket [21]
2022-06-09 15:35:56 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:56 DEBUG worker 1 waiting for new event
2022-06-09 15:35:56 DEBUG worker 5 got signal for new job
2022-06-09 15:35:56 DEBUG worker 5 got no event to process
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG worker 5 waiting for new event
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:56 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:56 DEBUG executing statements
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:56 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 4 got signal for new job
2022-06-09 15:35:56 DEBUG worker 4 processing event 0xf1eb1cd0
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG om_ssl_write
2022-06-09 15:35:56 DEBUG add socket [21]
2022-06-09 15:35:56 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:56 DEBUG worker 2 waiting for new event
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 3 got signal for new job
2022-06-09 15:35:56 DEBUG worker 3 got no event to process
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG worker 3 waiting for new event
2022-06-09 15:35:56 DEBUG executing statements
2022-06-09 15:35:56 DEBUG om_ssl sent 1429 bytes
2022-06-09 15:35:56 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:56 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG om_ssl sent 1343 bytes
2022-06-09 15:35:56 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 1 got signal for new job
2022-06-09 15:35:56 DEBUG executing statements
2022-06-09 15:35:56 DEBUG worker 1 processing event 0xf1eb1d20
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG before nx_logqueue_push, size: 0
2022-06-09 15:35:56 DEBUG om_ssl_write
2022-06-09 15:35:56 DEBUG worker 4 waiting for new event
2022-06-09 15:35:56 DEBUG add socket [21]
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got (queuesize: 0)
2022-06-09 15:35:56 DEBUG worker 5 got signal for new job
2022-06-09 15:35:56 DEBUG worker 5 got no event to process
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:56 DEBUG worker 5 waiting for new event
2022-06-09 15:35:56 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG worker 0 processing event 0xf1eb1690
2022-06-09 15:35:56 DEBUG om_ssl sent 1343 bytes
2022-06-09 15:35:56 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG before nx_logqueue_pop, size: 1
2022-06-09 15:35:56 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:56 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:56 DEBUG RESUME: eventlog
2022-06-09 15:35:56 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:56 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:56 DEBUG future event, event thread sleeping 578111ms in cond_timedwait
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:56 DEBUG worker 2 got signal for new job
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG worker 1 waiting for new event
2022-06-09 15:35:56 DEBUG RESUME: eventlog
2022-06-09 15:35:56 DEBUG worker 2 processing event 0xf1eb1b90
2022-06-09 15:35:56 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG worker 0 waiting for new event
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG found other events (1), adding poll event to end of list
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 3 got signal for new job
2022-06-09 15:35:56 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:56 DEBUG worker 2 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: DATA_AVAILABLE (ssl)
2022-06-09 15:35:56 DEBUG om_ssl_write
2022-06-09 15:35:56 DEBUG add socket [21]
2022-06-09 15:35:56 DEBUG socket already added to pollset with reqevents [21 != 21]
2022-06-09 15:35:56 DEBUG ssl get_next_logdata: got NULL (queuesize: 0)
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 4 got signal for new job
2022-06-09 15:35:56 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:56 DEBUG worker 3 processing event 0xf1eb1d20
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog)
2022-06-09 15:35:56 DEBUG RESUME: eventlog
2022-06-09 15:35:56 DEBUG module eventlog already running, skipping resume
2022-06-09 15:35:56 DEBUG worker 4 waiting for new event
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 5 got signal for new job
2022-06-09 15:35:56 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:56 DEBUG worker 3 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 1 got signal for new job
2022-06-09 15:35:56 DEBUG worker 1 processing event 0xf1eb1cd0
2022-06-09 15:35:56 DEBUG worker 5 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 0 got signal for new job
2022-06-09 15:35:56 DEBUG worker 1 waiting for new event
2022-06-09 15:35:56 DEBUG worker 0 processing event 0xf1eb1820
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 2 got signal for new job
2022-06-09 15:35:56 DEBUG worker 2 processing event 0xf1eb17d0
2022-06-09 15:35:56 DEBUG worker 0 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 4 got signal for new job
2022-06-09 15:35:56 DEBUG worker 4 processing event 0xf1eb1690
2022-06-09 15:35:56 DEBUG worker 2 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:56 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:56 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:56 DEBUG event added to jobqueue
2022-06-09 15:35:56 DEBUG worker 3 got signal for new job
2022-06-09 15:35:56 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:56 DEBUG worker 4 waiting for new event
2022-06-09 15:35:56 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:56 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 3 processing event 0xf1eb17d0
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 5 got signal for new job
2022-06-09 15:35:57 DEBUG worker 5 got no event to process
2022-06-09 15:35:57 DEBUG worker 5 waiting for new event
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 3 processing event 0xf1eb1b90
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 1 got signal for new job
2022-06-09 15:35:57 DEBUG worker 1 got no event to process
2022-06-09 15:35:57 DEBUG worker 1 waiting for new event
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 0 got signal for new job
2022-06-09 15:35:57 DEBUG worker 0 processing event 0xf1eb1640
2022-06-09 15:35:57 DEBUG worker 3 waiting for new event
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:57 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:57 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:57 DEBUG future event, event thread sleeping 419316ms in cond_timedwait
2022-06-09 15:35:57 DEBUG worker 2 got signal for new job
2022-06-09 15:35:57 DEBUG worker 2 processing event 0xf1eb1960
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: MODULE_SPECIFIC (_exec)
2022-06-09 15:35:57 DEBUG process -1 reaped by xm_exec_reap
2022-06-09 15:35:57 DEBUG worker 2 waiting for new event
2022-06-09 15:35:57 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:57 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:57 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:57 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:57 DEBUG future event, event thread sleeping 419316ms in cond_timedwait
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 0 processing event 0xf1eb1b90
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 4 got signal for new job
2022-06-09 15:35:57 DEBUG worker 4 got no event to process
2022-06-09 15:35:57 DEBUG worker 4 waiting for new event
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 5 got signal for new job
2022-06-09 15:35:57 DEBUG worker 5 processing event 0xf1eb1640
2022-06-09 15:35:57 DEBUG worker 0 waiting for new event
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 5 processing event 0xf1eb1b90
2022-06-09 15:35:57 DEBUG worker 1 got signal for new job
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG worker 1 got no event to process
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 1 waiting for new event
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 3 got signal for new job
2022-06-09 15:35:57 DEBUG worker 5 waiting for new event
2022-06-09 15:35:57 DEBUG worker 3 processing event 0xf1eb1730
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 3 processing event 0xf1eb1cd0
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 2 got signal for new job
2022-06-09 15:35:57 DEBUG worker 2 got no event to process
2022-06-09 15:35:57 DEBUG worker 2 waiting for new event
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 4 got signal for new job
2022-06-09 15:35:57 DEBUG worker 4 processing event 0xf1eb17d0
2022-06-09 15:35:57 DEBUG worker 3 waiting for new event
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 4 processing event 0xf1eb1b90
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 0 got signal for new job
2022-06-09 15:35:57 DEBUG worker 0 got no event to process
2022-06-09 15:35:57 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:57 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:57 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: READ (eventlog)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:57 DEBUG future event, event thread sleeping 578116ms in cond_timedwait
2022-06-09 15:35:57 DEBUG worker 0 processing event 0xf1eb1c80
2022-06-09 15:35:57 DEBUG worker 1 got signal for new job
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: READ (eventlog)
2022-06-09 15:35:57 DEBUG worker 1 got no event to process
2022-06-09 15:35:57 DEBUG im_msvistalog checking for new events...
2022-06-09 15:35:57 DEBUG worker 1 waiting for new event
2022-06-09 15:35:57 DEBUG EvtNext returned ERROR_NO_MORE_ITEMS
2022-06-09 15:35:57 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:57 DEBUG EvtNext returned ERROR_INVALID_OPERATION
2022-06-09 15:35:57 DEBUG im_msvistalog read 0 events
2022-06-09 15:35:57 DEBUG worker 0 waiting for new event
2022-06-09 15:35:57 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:57 DEBUG new event in event_thread [_fileop:SCHEDULE]
2022-06-09 15:35:57 DEBUG new event in event_thread [_exec:MODULE_SPECIFIC]
2022-06-09 15:35:57 DEBUG new event in event_thread [eventlog:READ]
2022-06-09 15:35:57 DEBUG future event, event thread sleeping 578116ms in cond_timedwait
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 4 processing event 0xf1eb1c80
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 5 got signal for new job
2022-06-09 15:35:57 DEBUG worker 5 got no event to process
2022-06-09 15:35:57 DEBUG worker 5 waiting for new event
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 4 processing event 0xf1eb1d20
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 2 got signal for new job
2022-06-09 15:35:57 DEBUG worker 2 got no event to process
2022-06-09 15:35:57 DEBUG worker 2 waiting for new event
2022-06-09 15:35:57 WARNING stopping nxlog service
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 4 processing event 0xf1eb15f0
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 3 got signal for new job
2022-06-09 15:35:57 DEBUG worker 3 got no event to process
2022-06-09 15:35:57 DEBUG worker 3 waiting for new event
2022-06-09 15:35:57 WARNING nxlog-ce received a termination request signal, exiting...
2022-06-09 15:35:57 DEBUG nxlog_shutdown() enter
2022-06-09 15:35:57 DEBUG stopping INPUT modules
2022-06-09 15:35:57 DEBUG stopping module eventlog
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: MODULE_STOP (eventlog)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 1 got signal for new job
2022-06-09 15:35:57 DEBUG worker 1 processing event 0xf1eb1820
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: MODULE_STOP (eventlog)
2022-06-09 15:35:57 DEBUG STOP: eventlog
2022-06-09 15:35:57 DEBUG worker 1 waiting for new event
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 0 got signal for new job
2022-06-09 15:35:57 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:57 DEBUG worker 4 waiting for new event
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG [ssl] no poll events, pollset_poll timed out
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 0 processing event 0xf1eb17d0
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: POLL (ssl)
2022-06-09 15:35:57 DEBUG worker 5 got signal for new job
2022-06-09 15:35:57 DEBUG nx_module_pollset_poll: ssl
2022-06-09 15:35:57 DEBUG worker 5 got no event to process
2022-06-09 15:35:57 DEBUG worker 5 waiting for new event
2022-06-09 15:35:57 DEBUG stopping PROCESSOR modules
2022-06-09 15:35:57 DEBUG stopping OUTPUT modules
2022-06-09 15:35:57 DEBUG stopping module ssl
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: MODULE_STOP (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 2 got signal for new job
2022-06-09 15:35:57 DEBUG worker 2 got no event to process
2022-06-09 15:35:57 DEBUG worker 2 waiting for new event
2022-06-09 15:35:57 DEBUG [ssl] apr_pollset_poll was interrupted
2022-06-09 15:35:57 DEBUG nx_event_to_jobqueue: POLL (ssl)
2022-06-09 15:35:57 DEBUG event added to jobqueue
2022-06-09 15:35:57 DEBUG worker 3 got signal for new job
2022-06-09 15:35:57 DEBUG worker 3 processing event 0xf1eb1820
2022-06-09 15:35:57 DEBUG worker 0 waiting for new event
2022-06-09 15:35:57 DEBUG PROCESS_EVENT: MODULE_STOP (ssl)
2022-06-09 15:35:57 DEBUG STOP: ssl
2022-06-09 15:35:57 DEBUG remove socket [21]
2022-06-09 15:35:58 DEBUG stopping EXTENSION modules
2022-06-09 15:35:58 DEBUG stopping module _syslog
2022-06-09 15:35:58 DEBUG nx_event_to_jobqueue: MODULE_STOP (_syslog)
2022-06-09 15:35:58 DEBUG event added to jobqueue
2022-06-09 15:35:58 DEBUG worker 0 got signal for new job
2022-06-09 15:35:58 DEBUG worker 0 processing event 0xf1eb18c0
2022-06-09 15:35:58 DEBUG PROCESS_EVENT: MODULE_STOP (_syslog)
2022-06-09 15:35:58 DEBUG STOP: _syslog
2022-06-09 15:35:58 DEBUG worker 0 waiting for new event