diff --git a/.github/workflows/testdriver.yml b/.github/workflows/testdriver.yml index 9cb57c929..929b6bf33 100644 --- a/.github/workflows/testdriver.yml +++ b/.github/workflows/testdriver.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Debug - Print masked secret run: | - if [ -n "${{secrets.TESTDRIVER_API_KEY}}" ]; + if [ -n "${{secrets.TESTDRIVER_API_KEY}}" ]; then echo "yes the api is there" else @@ -21,7 +21,6 @@ jobs: fi - uses: testdriverai/action@main with: - version: v4.0.44 key: ${{secrets.TESTDRIVER_API_KEY}} prerun: | npm install diff --git a/src/main/java/stirling/software/SPDF/EE/EEAppConfig.java b/src/main/java/stirling/software/SPDF/EE/EEAppConfig.java index 5b1b40702..cf0bcbd4e 100644 --- a/src/main/java/stirling/software/SPDF/EE/EEAppConfig.java +++ b/src/main/java/stirling/software/SPDF/EE/EEAppConfig.java @@ -7,20 +7,19 @@ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Lazy; +import lombok.extern.slf4j.Slf4j; import stirling.software.SPDF.model.ApplicationProperties; @Configuration @Lazy +@Slf4j public class EEAppConfig { - private static final Logger logger = LoggerFactory.getLogger(EEAppConfig.class); - @Autowired ApplicationProperties applicationProperties; - @Autowired private LicenseKeyChecker licenseKeyChecker; @Bean(name = "runningEE") public boolean runningEnterpriseEdition() { - return licenseKeyChecker.getEnterpriseEnabledResult(); + return licenseKeyChecker.getEnterpriseEnabledResult(); } -} +} \ No newline at end of file diff --git a/src/main/resources/templates/fragments/navbar.html b/src/main/resources/templates/fragments/navbar.html index 24a2ca571..d31749dac 100644 --- a/src/main/resources/templates/fragments/navbar.html +++ b/src/main/resources/templates/fragments/navbar.html @@ -360,7 +360,7 @@ -