Skip to content

Commit

Permalink
fix: avoid NPE when configuration is missing #2857 (#2863)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomer2001 committed Nov 4, 2022
1 parent be03a38 commit 4a27091
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,8 @@
import jakarta.enterprise.event.Observes;
import jakarta.inject.Inject;

import org.slf4j.Logger;

@ApplicationScoped
public class AppInitializer {

@Inject
private Logger logger;

@Inject
private Transpilation trTimer;
Expand All @@ -25,11 +20,10 @@ public class AppInitializer {

public void run(@Observes @ApplicationInitialized(ApplicationScoped.class)
ApplicationInitializedEvent event) {

logger.info("Initializing Agama services");

trTimer.initTimer();
fcleaner.initTimer();

}

}
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,16 @@ public EngineConfig engineConfigInstance() {
public void updateConfiguration(@Observes @ConfigurationUpdate AppConfiguration appConfiguration) {

try {
logger.info("Refreshing Agama configuration...");
BeanUtils.copyProperties(econfig, appConfiguration.getAgamaConfiguration());
serializerFactory.refresh();
EngineConfig newConfig = appConfiguration.getAgamaConfiguration();

if (newConfig == null) {
logger.info("Agama will not be available in this deployment");

} else {
logger.info("Refreshing Agama configuration...");
BeanUtils.copyProperties(econfig, newConfig);
serializerFactory.refresh();
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
}
Expand Down

0 comments on commit 4a27091

Please sign in to comment.