Skip to content

Commit 008ae11

Browse files
committed
update access level opensearch
1 parent bc3c693 commit 008ae11

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/klass-dev.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: Klass dev
22

33
on:
44
workflow_dispatch:
5-
#push:
5+
inputs:
6+
app:
7+
description: 'App name'
8+
required: true
9+
push:
610

711
jobs:
812
build:

klass-api/src/main/java/no/ssb/klass/api/services/SearchServiceImpl.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ public void indexAsync(Long classificationSeriesId) {
165165
checkNotNull(classificationSeriesId);
166166
try {
167167
ClassificationSeries classification = classificationRepository.getOne(classificationSeriesId);
168+
log.debug("Indexing classification series {}", classificationSeriesId);
168169
indexSync(classification);
169170
} catch (Exception e) {
170171
log.warn("Failed to index classification {}: {}", classificationSeriesId, e.getMessage());

0 commit comments

Comments
 (0)