Check if the current Perl installation supports threads:Create/edit a new file called
threads.pl (the name can be anything) and copy/paste the following lines of code:
#!/usr/bin/perl
$CANUSETHREADS = eval 'use threads; 1';
if ( $CANUSETHREADS )
{ printf("threads are supported!!\n"); exit 0; }
else
{ printf("threads are NOT supported!!\n"); exit 8; }
Save the script and at the command prompt type:
perl
threads.plThe output would inform whether the current Perl installation supports threads.
If threads are NOT supported:
1. Set the MaxConcurrent parameter on the affected templates to 1.
2. If this is not an option, then a rollback/downgrade to the previous version of pDNI is recommended.