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
43aee1bd
Commit
43aee1bd
authored
Jun 24, 2020
by
Johnny Lim
Committed by
Madhura Bhave
Jun 29, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
See gh-22090
parent
62f5e443
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
ArtifactoryService.java
...course/releasescripts/artifactory/ArtifactoryService.java
+1
-1
howto.adoc
...oot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc
+1
-1
ReactiveWebServerApplicationContext.java
...reactive/context/ReactiveWebServerApplicationContext.java
+1
-1
ServletWebServerApplicationContext.java
...b/servlet/context/ServletWebServerApplicationContext.java
+1
-1
AvailabilityChangeEventTests.java
...ework/boot/availability/AvailabilityChangeEventTests.java
+1
-1
No files found.
ci/images/releasescripts/src/main/java/io/spring/concourse/releasescripts/artifactory/ArtifactoryService.java
View file @
43aee1bd
...
...
@@ -107,7 +107,7 @@ public class ArtifactoryService {
ResponseEntity
<
BuildInfoResponse
>
entity
=
this
.
restTemplate
.
getForEntity
(
BUILD_INFO_URL
+
buildName
+
"/"
+
buildNumber
,
BuildInfoResponse
.
class
);
BuildInfoResponse
.
Status
status
=
entity
.
getBody
().
getBuildInfo
().
getStatuses
()[
0
];
logger
.
debug
(
"Re
ut
ned repository "
+
status
.
getRepository
()
+
" expecting "
+
targetRepo
);
logger
.
debug
(
"Re
tur
ned repository "
+
status
.
getRepository
()
+
" expecting "
+
targetRepo
);
return
status
.
getRepository
().
equals
(
targetRepo
);
}
catch
(
HttpClientErrorException
ex
)
{
...
...
spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc
View file @
43aee1bd
...
...
@@ -2972,7 +2972,7 @@ class ExampleIntegrationTests {
This will start up a docker container running Neo4j (if Docker is running locally) before any of the tests are run.
In most cases, you will need to configure the application using details from the running container, such as container IP or port.
This can be done with a static `@DynamicPropertySource` method that allows adding
adding
dynamic property values to the Spring Environment.
This can be done with a static `@DynamicPropertySource` method that allows adding dynamic property values to the Spring Environment.
[source,java,indent=0,subs="verbatim,quotes,attributes"]
----
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/ReactiveWebServerApplicationContext.java
View file @
43aee1bd
...
...
@@ -136,7 +136,7 @@ public class ReactiveWebServerApplicationContext extends GenericReactiveWebAppli
@Override
protected
void
doClose
()
{
if
(
this
.
isActive
())
{
if
(
isActive
())
{
AvailabilityChangeEvent
.
publish
(
this
,
ReadinessState
.
REFUSING_TRAFFIC
);
}
super
.
doClose
();
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/context/ServletWebServerApplicationContext.java
View file @
43aee1bd
...
...
@@ -164,7 +164,7 @@ public class ServletWebServerApplicationContext extends GenericWebApplicationCon
@Override
protected
void
doClose
()
{
if
(
this
.
isActive
())
{
if
(
isActive
())
{
AvailabilityChangeEvent
.
publish
(
this
,
ReadinessState
.
REFUSING_TRAFFIC
);
}
super
.
doClose
();
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/availability/AvailabilityChangeEventTests.java
View file @
43aee1bd
...
...
@@ -105,7 +105,7 @@ class AvailabilityChangeEventTests {
@Override
String
getDescription
()
{
return
"I have a
sl
o been overridden"
;
return
"I have a
ls
o been overridden"
;
}
};
...
...
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