fix(core): update

This commit is contained in:
Philipp Kunz 2023-07-05 23:45:48 +02:00
parent d6176f820a
commit d62b18e93c
3 changed files with 3 additions and 4 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiclient.xyz/elasticsearch',
version: '1.0.43',
version: '1.0.44',
description: 'log to elasticsearch in a kibana compatible format'
}

View File

@ -14,7 +14,7 @@ export class ElasticIndex {
public async ensureIndex(prefixArg: string, indexNameArg: string) {
if (this.stringmap.checkString(indexNameArg)) {
return;
return indexNameArg;
}
const responseArg = await this.elasticSearchRef.client.cat.indices({
format: 'json',

View File

@ -51,8 +51,7 @@ export class ElasticSearch<T> {
return;
}
const response = await this.elasticIndex.ensureIndex(this.indexPrefix, indexToUse);
console.log(response);
const resultIndexName = await this.elasticIndex.ensureIndex(this.indexPrefix, indexToUse);
this.client.index(
{
index: indexToUse,