View | Details | Raw Unified | Return to bug 26309
Collapse All | Expand All

(-)a/Koha/SearchEngine/Elasticsearch.pm (-7 / +3 lines)
Lines 140-152 sub get_elasticsearch_params { Link Here
140
            croak($_->message);
140
            croak($_->message);
141
        }
141
        }
142
    };
142
    };
143
    # Extract relevant parts of configuration
144
    my $params = {
145
        nodes => $conf->{nodes}
146
    };
147
    $params->{cxn_pool} //= 'Static';
148
143
149
    return $params;
144
    return $conf
150
}
145
}
151
146
152
=head2 get_elasticsearch_settings
147
=head2 get_elasticsearch_settings
Lines 1256-1261 sub _read_configuration { Link Here
1256
        );
1251
        );
1257
    }
1252
    }
1258
1253
1254
    $configuration->{cxn_pool} = $conf->{cxn_pool} // 'Static';
1255
1259
    return $configuration;
1256
    return $configuration;
1260
}
1257
}
1261
1258
1262
- 

Return to bug 26309