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
4c7cc58a
Commit
4c7cc58a
authored
Dec 03, 2014
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct ApplicationPidFileWriter property javadoc
Fixes gh-2041
parent
39ee5839
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ApplicationPidFileWriter.java
...amework/boot/actuate/system/ApplicationPidFileWriter.java
+1
-2
YamlPropertySourceLoaderTests.java
...ringframework/boot/env/YamlPropertySourceLoaderTests.java
+1
-0
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/system/ApplicationPidFileWriter.java
View file @
4c7cc58a
...
@@ -36,8 +36,7 @@ import org.springframework.util.Assert;
...
@@ -36,8 +36,7 @@ import org.springframework.util.Assert;
* An {@link ApplicationListener} that saves application PID into file. This application
* An {@link ApplicationListener} that saves application PID into file. This application
* listener will be triggered exactly once per JVM, and the file name can be overridden at
* listener will be triggered exactly once per JVM, and the file name can be overridden at
* runtime with a System property or environment variable named "PIDFILE" (or "pidfile")
* runtime with a System property or environment variable named "PIDFILE" (or "pidfile")
* or using a {@code spring.application.pidfile} property in the Spring
* or using a {@code spring.pidfile} property in the Spring {@link Environment}.
* {@link Environment}.
*
*
* @author Jakub Kubrynski
* @author Jakub Kubrynski
* @author Dave Syer
* @author Dave Syer
...
...
spring-boot/src/test/java/org/springframework/boot/env/YamlPropertySourceLoaderTests.java
View file @
4c7cc58a
...
@@ -61,4 +61,5 @@ public class YamlPropertySourceLoaderTests {
...
@@ -61,4 +61,5 @@ public class YamlPropertySourceLoaderTests {
assertNotNull
(
source
);
assertNotNull
(
source
);
assertThat
(
source
.
getPropertyNames
(),
equalTo
(
expected
.
toArray
(
new
String
[]
{})));
assertThat
(
source
.
getPropertyNames
(),
equalTo
(
expected
.
toArray
(
new
String
[]
{})));
}
}
}
}
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