Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
9bb5bb41
Commit
9bb5bb41
authored
Dec 23, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11364 from izeye:fix-package-name
* pr/11364: Fix package name for InfluxDB
parents
1867ba63
240aaadd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
InfluxDbHealthIndicatorAutoConfiguration.java
...gure/influx/InfluxDbHealthIndicatorAutoConfiguration.java
+1
-1
InfluxDbHealthIndicatorAutoConfigurationTests.java
...influx/InfluxDbHealthIndicatorAutoConfigurationTests.java
+1
-1
InfluxDbHealthIndicator.java
...ramework/boot/actuate/influx/InfluxDbHealthIndicator.java
+2
-2
InfluxDbHealthIndicatorTests.java
...ork/boot/actuate/influx/InfluxDbHealthIndicatorTests.java
+1
-2
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/influx/InfluxDbHealthIndicatorAutoConfiguration.java
View file @
9bb5bb41
...
@@ -24,7 +24,7 @@ import org.springframework.boot.actuate.autoconfigure.health.CompositeHealthIndi
...
@@ -24,7 +24,7 @@ import org.springframework.boot.actuate.autoconfigure.health.CompositeHealthIndi
import
org.springframework.boot.actuate.autoconfigure.health.ConditionalOnEnabledHealthIndicator
;
import
org.springframework.boot.actuate.autoconfigure.health.ConditionalOnEnabledHealthIndicator
;
import
org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration
;
import
org.springframework.boot.actuate.health.HealthIndicator
;
import
org.springframework.boot.actuate.health.HealthIndicator
;
import
org.springframework.boot.actuate.infux.InfluxDbHealthIndicator
;
import
org.springframework.boot.actuate.inf
l
ux.InfluxDbHealthIndicator
;
import
org.springframework.boot.autoconfigure.AutoConfigureAfter
;
import
org.springframework.boot.autoconfigure.AutoConfigureAfter
;
import
org.springframework.boot.autoconfigure.AutoConfigureBefore
;
import
org.springframework.boot.autoconfigure.AutoConfigureBefore
;
import
org.springframework.boot.autoconfigure.EnableAutoConfiguration
;
import
org.springframework.boot.autoconfigure.EnableAutoConfiguration
;
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/influx/InfluxDbHealthIndicatorAutoConfigurationTests.java
View file @
9bb5bb41
...
@@ -21,7 +21,7 @@ import org.junit.Test;
...
@@ -21,7 +21,7 @@ import org.junit.Test;
import
org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration
;
import
org.springframework.boot.actuate.health.ApplicationHealthIndicator
;
import
org.springframework.boot.actuate.health.ApplicationHealthIndicator
;
import
org.springframework.boot.actuate.infux.InfluxDbHealthIndicator
;
import
org.springframework.boot.actuate.inf
l
ux.InfluxDbHealthIndicator
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
import
org.springframework.boot.test.context.runner.ApplicationContextRunner
;
import
org.springframework.boot.test.context.runner.ApplicationContextRunner
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Bean
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/infux/InfluxDbHealthIndicator.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/inf
l
ux/InfluxDbHealthIndicator.java
View file @
9bb5bb41
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
actuate
.
infux
;
package
org
.
springframework
.
boot
.
actuate
.
inf
l
ux
;
import
org.influxdb.InfluxDB
;
import
org.influxdb.InfluxDB
;
import
org.influxdb.dto.Pong
;
import
org.influxdb.dto.Pong
;
...
@@ -25,7 +25,7 @@ import org.springframework.boot.actuate.health.HealthIndicator;
...
@@ -25,7 +25,7 @@ import org.springframework.boot.actuate.health.HealthIndicator;
import
org.springframework.util.Assert
;
import
org.springframework.util.Assert
;
/**
/**
* {@link HealthIndicator} for InfluxD
b
.
* {@link HealthIndicator} for InfluxD
B
.
*
*
* @author Eddú Meléndez
* @author Eddú Meléndez
* @since 2.0.0
* @since 2.0.0
...
...
spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/influx/InfluxDbHealthIndicatorTests.java
View file @
9bb5bb41
...
@@ -25,7 +25,6 @@ import org.junit.Test;
...
@@ -25,7 +25,6 @@ import org.junit.Test;
import
org.springframework.boot.actuate.health.Health
;
import
org.springframework.boot.actuate.health.Health
;
import
org.springframework.boot.actuate.health.Status
;
import
org.springframework.boot.actuate.health.Status
;
import
org.springframework.boot.actuate.infux.InfluxDbHealthIndicator
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
mockito
.
BDDMockito
.
given
;
import
static
org
.
mockito
.
BDDMockito
.
given
;
...
@@ -33,7 +32,7 @@ import static org.mockito.Mockito.mock;
...
@@ -33,7 +32,7 @@ import static org.mockito.Mockito.mock;
import
static
org
.
mockito
.
Mockito
.
verify
;
import
static
org
.
mockito
.
Mockito
.
verify
;
/**
/**
* Tests for {@link InfluxDbHealthIndicator}
* Tests for {@link InfluxDbHealthIndicator}
.
*
*
* @author Eddú Meléndez
* @author Eddú Meléndez
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment