change from MCE::Shared to MCE::Queue after resolution of crash bug

This commit is contained in:
Oliver Gorwits
2020-02-09 10:00:36 +00:00
parent 236f637858
commit 2827d24f02
4 changed files with 10 additions and 5 deletions

View File

@@ -54,8 +54,7 @@ Module::Build->new(
'MIME::Base64' => '3.13', 'MIME::Base64' => '3.13',
'Module::Load' => '0.32', 'Module::Load' => '0.32',
'Moo' => '1.001000', 'Moo' => '1.001000',
'MCE' => '1.865', 'MCE' => '1.866',
'MCE::Shared' => '1.864',
'Net::Domain' => '1.23', 'Net::Domain' => '1.23',
'Net::DNS' => '0.72', 'Net::DNS' => '0.72',
'Net::LDAP' => '0', 'Net::LDAP' => '0',

View File

@@ -1,3 +1,9 @@
2.044014 - 2020-02-09
[BUG FIXES]
* change from MCE::Shared to MCE::Queue after resolution of crash bug
2.044013 - 2020-02-04 2.044013 - 2020-02-04
[BUG FIXES] [BUG FIXES]

View File

@@ -35,7 +35,7 @@ use Role::Tiny::With;
use MCE::Signal '-setpgrp'; use MCE::Signal '-setpgrp';
use MCE::Flow Sereal => 1; use MCE::Flow Sereal => 1;
use MCE::Shared; use MCE::Queue;
# set temporary MCE files' location in home directory # set temporary MCE files' location in home directory
my $home = ($ENV{NETDISCO_HOME} || $ENV{HOME}); my $home = ($ENV{NETDISCO_HOME} || $ENV{HOME});
@@ -46,7 +46,7 @@ mkdir $tmp_dir if ! -d $tmp_dir;
prctl 'nd2: master'; prctl 'nd2: master';
# shared local job queue # shared local job queue
my $queue = MCE::Shared->queue(); my $queue = MCE::Queue->new;
# support a scheduler-only node # support a scheduler-only node
setting('workers')->{'no_manager'} = 1 setting('workers')->{'no_manager'} = 1

View File

@@ -4,7 +4,7 @@ use strict;
use warnings; use warnings;
use 5.010_000; use 5.010_000;
our $VERSION = '2.044013'; our $VERSION = '2.044014';
use App::Netdisco::Configuration; use App::Netdisco::Configuration;
=head1 NAME =head1 NAME