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

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

Return to bug 26309