Skip to content
Open
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,6 @@
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>${awaitility.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
@ConditionalOnProperty(prefix = "test", value = "api", havingValue = "gateway")
public class GatewayBaseTestExecutor extends BaseTestExecutor {

@Value("${gateway.createOnStart}")
@Value("${gateway.createOnStart:false}")
private boolean gatewayCreateOnStart;

@Value("${gateway.deleteOnComplete}")
@Value("${gateway.deleteOnComplete:false}")
private boolean gatewayDeleteOnComplete;

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ public class DefaultCustomerManager implements CustomerManager {
private static final ObjectMapper mapper = new ObjectMapper();
private final List<CustomerId> customerIds = Collections.synchronizedList(new ArrayList<>(1024));

@Value("${customer.startIdx}")
@Value("${customer.startIdx:0}")
int customerStartIdx;
@Value("${customer.endIdx}")
@Value("${customer.endIdx:0}")
int customerEndIdx;

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ public class DefaultDashboardManager implements DashboardManager {
@Autowired
private RestClientService restClientService;

@Value("${dashboard.tenant:}")
@Value("${dashboard.tenant:alarms.json}")
private String[] tenantDashboards;
@Value("${dashboard.shared:}")
@Value("${dashboard.shared:devices.json}")
private String sharedDashboardName;
@Value("${dashboard.deleteIfExists:false}")
private boolean deleteIfExists;
Expand Down
Loading