Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ public final class Activator implements BundleActivator {
@Override
public void start(@Nullable BundleContext bc) throws Exception {
logger.info("Starting openHAB {} ({})", OpenHAB.getVersion(), OpenHAB.buildString());

// Force disabling of the Graal language cache that doesn't update after the initial gathering
System.setProperty("truffle.engine.DisableLanguageCache", "true");

// Configure the addons service configuration to allow multiple consumers
ServiceReference<ConfigurationAdmin> ref;
if (bc != null && (ref = bc.getServiceReference(ConfigurationAdmin.class)) != null) {
ConfigurationAdmin ca = bc.getService(ref);
Expand Down
Loading