Skip to content

Commit 4e82c40

Browse files
rjeberhardankedia
andauthored
Operator version 3.1.1 (#2108)
* Prepare for 3.1.1 * OWLS-86552 - Fix for multiple pod restarts during rolling update. ManagedServerUpAfterStep is executed after servers in all clusters started. (#2109) * Add PR reference Co-authored-by: Anil Kedia <37935279+ankedia@users.noreply.github.com>
1 parent 60fafcd commit 4e82c40

File tree

26 files changed

+63
-47
lines changed

26 files changed

+63
-47
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Oracle is finding ways for organizations using WebLogic Server to run important
1717
The fastest way to experience the operator is to follow the [Quick Start guide](https://oracle.github.io/weblogic-kubernetes-operator/quickstart/), or you can peruse our [documentation](https://oracle.github.io/weblogic-kubernetes-operator), read our [blogs](https://blogs.oracle.com/weblogicserver/updated-weblogic-kubernetes-support-with-operator-20), or try out the [samples](https://oracle.github.io/weblogic-kubernetes-operator/samples/).
1818

1919
***
20-
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.0.
21-
This release was published on November 13, 2020.
20+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.1.
21+
This release was published on December 17, 2020.
2222
***
2323

2424
# Documentation

buildDockerImage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ while getopts "t:" optname; do
3333
esac
3434
done
3535

36-
IMAGE_NAME=${name:-oracle/weblogic-kubernetes-operator:3.1.0}
36+
IMAGE_NAME=${name:-oracle/weblogic-kubernetes-operator:3.1.1}
3737
SCRIPTPATH="$( cd "$(dirname "$0")" > /dev/null 2>&1 ; pwd -P )"
3838

3939
# Proxy settings

buildtime-reports/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>operator-parent</artifactId>
1010
<groupId>oracle.kubernetes</groupId>
11-
<version>3.1.0</version>
11+
<version>3.1.1</version>
1212
</parent>
1313

1414
<artifactId>buildtime-reports</artifactId>

docs-source/content/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ using the operator to deploy and run a WebLogic domain container-packaged web ap
2323
***
2424
#### Current production release
2525

26-
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.0.
27-
This release was published on November 13, 2020. See the operator prerequisites and supported environments [here]({{< relref "/userguide/introduction/introduction#operator-prerequisites" >}}).
26+
The [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases) is 3.1.1.
27+
This release was published on December 17, 2020. See the operator prerequisites and supported environments [here]({{< relref "/userguide/introduction/introduction#operator-prerequisites" >}}).
2828

2929
***
3030

docs-source/content/faq/namespace-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ elkIntegrationEnabled: false
4343
externalDebugHttpPort: 30999
4444
externalRestEnabled: false
4545
externalRestHttpsPort: 31001
46-
image: oracle/weblogic-kubernetes-operator:3.1.0
46+
image: oracle/weblogic-kubernetes-operator:3.1.1
4747
imagePullPolicy: IfNotPresent
4848
internalDebugHttpPort: 30999
4949
istioEnabled: false

docs-source/content/quickstart/get-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and accept the license agreement for the [WebLogic Server image](https://hub.doc
1919
1. Pull the operator image:
2020

2121
```bash
22-
$ docker pull oracle/weblogic-kubernetes-operator:3.1.0
22+
$ docker pull oracle/weblogic-kubernetes-operator:3.1.1
2323
```
2424

2525
1. Pull the Traefik ingress controller image:

docs-source/content/quickstart/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ $ helm install traefik-operator traefik/traefik \
5151
```bash
5252
$ helm install sample-weblogic-operator kubernetes/charts/weblogic-operator \
5353
--namespace sample-weblogic-operator-ns \
54-
--set image=oracle/weblogic-kubernetes-operator:3.1.0 \
54+
--set image=oracle/weblogic-kubernetes-operator:3.1.1 \
5555
--set serviceAccount=sample-weblogic-operator-sa \
5656
--set "enableClusterRoleBinding=true" \
5757
--set "domainNamespaceSelectionStrategy=LabelSelector" \

docs-source/content/release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ draft: false
88

99
| Date | Version | Introduces backward incompatibilities? | Change |
1010
| --- | --- | --- | --- |
11+
| December 17, 2020 | v3.1.1 | no | Resolved an issue that caused unexpected server restarts when the domain had multiple WebLogic clusters. |
1112
| November 24, 2020 | v3.0.4 | no | This release contains a back-ported fix from 3.1.0 for Managed Server pods that do not properly restart following a rolling activity. |
1213
| November 13, 2020 | v3.1.0 | no | Enhanced options for specifying managed namespaces. Helm 3.1.3+ now required. Added support for Tanzu Kubernetes Service. |
1314
| November 9, 2020 | v3.0.3 | no | This release contains a fix for pods that are stuck in the Terminating state after an unexpected shut down of a worker node. |
@@ -32,6 +33,10 @@ draft: false
3233

3334
### Change log
3435

36+
#### Operator 3.1.1
37+
38+
* Resolved an issue that caused unexpected server restarts when the domain had multiple WebLogic clusters ([#2109](https://github.com/oracle/weblogic-kubernetes-operator/pull/2109)).
39+
3540
#### Operator 3.1.0
3641

3742
* All fixes included in 3.0.1, 3.0.2, and 3.0.3 are included in 3.1.0.

docs-source/content/userguide/introduction/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The operator is packaged in a [Docker image](https://hub.docker.com/r/oracle/web
1818

1919
```
2020
$ docker login
21-
$ docker pull oracle/weblogic-kubernetes-operator:3.1.0
21+
$ docker pull oracle/weblogic-kubernetes-operator:3.1.1
2222
```
2323

2424
For more details on acquiring the operator image and prerequisites for installing the operator, consult the [Quick Start guide]({{< relref "/quickstart/_index.md" >}}).

docs-source/content/userguide/introduction/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Detailed instructions are available [here]({{< relref "/userguide/managing-opera
1616

1717
### Operator prerequisites
1818

19-
For the current production release 3.1.0:
19+
For the current production release 3.1.1:
2020

2121
* Kubernetes 1.14.8+, 1.15.7+, 1.16.0+, 1.17.0+, and 1.18.0+ (check with `kubectl version`).
2222
* Flannel networking v0.9.1-amd64 or later (check with `docker images | grep flannel`), Calico networking (Calico v3.16.1),

docs-source/content/userguide/managing-domains/domain-lifecycle/restarting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ d. Update the `image` field of the Domain YAML file, specifying the new image na
188188
```
189189
domain:
190190
spec:
191-
image: oracle/weblogic-updated:3.1.0
191+
image: oracle/weblogic-updated:3.1.1
192192
```
193193
e. The operator will now initiate a rolling restart, which will apply the updated image, for all the servers in the domain.
194194

docs-source/content/userguide/managing-operators/installation/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ the `helm upgrade` command requires that you supply a new Helm chart and image.
117117
```
118118
$ helm upgrade \
119119
--reuse-values \
120-
--set image=oracle/weblogic-kubernetes-operator:3.1.0 \
120+
--set image=oracle/weblogic-kubernetes-operator:3.1.1 \
121121
--namespace weblogic-operator-namespace \
122122
--wait \
123123
weblogic-operator \

docs-source/content/userguide/managing-operators/using-the-operator/using-helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ javaLoggingLevel: "FINE"
100100
##### `image`
101101
Specifies the Docker image containing the operator code.
102102

103-
Defaults to `oracle/weblogic-kubernetes-operator:3.1.0`.
103+
Defaults to `oracle/weblogic-kubernetes-operator:3.1.1`.
104104

105105
Example:
106106
```

docs/charts/index.yaml

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,134 +1,144 @@
11
apiVersion: v1
22
entries:
33
weblogic-operator:
4+
- apiVersion: v1
5+
appVersion: 3.1.1
6+
created: "2020-12-17T11:40:43.541434-05:00"
7+
description: Helm chart for configuring the WebLogic operator.
8+
digest: 202d148fd3db1ce45d22d4eab3e84bea9bf774addd9e0bc65f9312207a6e4968
9+
name: weblogic-operator
10+
type: application
11+
urls:
12+
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.1.1.tgz
13+
version: 3.1.1
414
- apiVersion: v1
515
appVersion: 3.1.0
6-
created: "2020-11-24T15:04:35.436865-05:00"
16+
created: "2020-12-17T11:40:43.54029-05:00"
717
description: Helm chart for configuring the WebLogic operator.
8-
digest: b6edb5cbb947d1d58159ce74daec59c46b5d38f3753be2389b7d3d7a277444f8
18+
digest: acf600d0951dc3d8a0b05b35f3b9b1e62d827ef483fa863b0e37054ebb61f853
919
name: weblogic-operator
1020
type: application
1121
urls:
1222
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.1.0.tgz
1323
version: 3.1.0
1424
- apiVersion: v1
15-
created: "2020-11-24T15:04:35.432126-05:00"
25+
created: "2020-12-17T11:40:43.537876-05:00"
1626
description: Helm chart for configuring the WebLogic operator.
1727
digest: 5d3a79a55132c33afd5d2d30e398c3cc508d77c9352129f2e8e127db5f1dcf19
1828
name: weblogic-operator
1929
urls:
2030
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.4.tgz
2131
version: 3.0.4
2232
- apiVersion: v1
23-
created: "2020-11-24T15:04:35.42969-05:00"
33+
created: "2020-12-17T11:40:43.53578-05:00"
2434
description: Helm chart for configuring the WebLogic operator.
2535
digest: c6aeefca88eaa0d431dba66ee5705391c92468f26b27c5af92815ec3c3000406
2636
name: weblogic-operator
2737
urls:
2838
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.3.tgz
2939
version: 3.0.3
3040
- apiVersion: v1
31-
created: "2020-11-24T15:04:35.42692-05:00"
41+
created: "2020-12-17T11:40:43.528221-05:00"
3242
description: Helm chart for configuring the WebLogic operator.
3343
digest: 84b5989fe8f2392d2b3b0f721bdab1562566d7d885324beafd9fc9e658b13cd3
3444
name: weblogic-operator
3545
urls:
3646
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.2.tgz
3747
version: 3.0.2
3848
- apiVersion: v1
39-
created: "2020-11-24T15:04:35.42484-05:00"
49+
created: "2020-12-17T11:40:43.526999-05:00"
4050
description: Helm chart for configuring the WebLogic operator.
4151
digest: e7654ad3f2168f54b3a4b133bf8a86ea12bc474e5ee1d3ab14e1cf53012e9772
4252
name: weblogic-operator
4353
urls:
4454
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.1.tgz
4555
version: 3.0.1
4656
- apiVersion: v1
47-
created: "2020-11-24T15:04:35.42294-05:00"
57+
created: "2020-12-17T11:40:43.5253-05:00"
4858
description: Helm chart for configuring the WebLogic operator.
4959
digest: 5c7c0d3ae797e98592b6fd2191b104f515d6649d0060af0a3ffef215d4c69864
5060
name: weblogic-operator
5161
urls:
5262
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.0.tgz
5363
version: 3.0.0
5464
- apiVersion: v1
55-
created: "2020-11-24T15:04:35.419443-05:00"
65+
created: "2020-12-17T11:40:43.523413-05:00"
5666
description: Helm chart for configuring the WebLogic operator.
5767
digest: 5f4cd8f4f3282b52b5e90a1169f26986e8272671845053606ade9c855fb04151
5868
name: weblogic-operator
5969
urls:
6070
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-3.0.0-rc1.tgz
6171
version: 3.0.0-rc1
6272
- apiVersion: v1
63-
created: "2020-11-24T15:04:35.417959-05:00"
73+
created: "2020-12-17T11:40:43.522441-05:00"
6474
description: Helm chart for configuring the WebLogic operator.
6575
digest: d441888a8deae1b1339e7585e3b437dfd2533303e46e842d7378e16db665e234
6676
name: weblogic-operator
6777
urls:
6878
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.6.0.tgz
6979
version: 2.6.0
7080
- apiVersion: v1
71-
created: "2020-11-24T15:04:35.415317-05:00"
81+
created: "2020-12-17T11:40:43.521221-05:00"
7282
description: Helm chart for configuring the WebLogic operator.
7383
digest: fe41421b7dc45dc8a3b2888d3a626a37f5d3c8e1fa292fb6699deedc5e1db33d
7484
name: weblogic-operator
7585
urls:
7686
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.5.0.tgz
7787
version: 2.5.0
7888
- apiVersion: v1
79-
created: "2020-11-24T15:04:35.413165-05:00"
89+
created: "2020-12-17T11:40:43.520165-05:00"
8090
description: Helm chart for configuring the WebLogic operator.
8191
digest: b36bd32083f67453a62d089a2c09ce38e6655d88ac8a7b38691230c55c40e672
8292
name: weblogic-operator
8393
urls:
8494
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.4.0.tgz
8595
version: 2.4.0
8696
- apiVersion: v1
87-
created: "2020-11-24T15:04:35.411141-05:00"
97+
created: "2020-12-17T11:40:43.518976-05:00"
8898
description: Helm chart for configuring the WebLogic operator.
8999
digest: a3eafe4c2c6ff49384e56421201e59a3737d651af8d5b605b87a19eb1f6f1dc3
90100
name: weblogic-operator
91101
urls:
92102
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.3.1.tgz
93103
version: 2.3.1
94104
- apiVersion: v1
95-
created: "2020-11-24T15:04:35.373414-05:00"
105+
created: "2020-12-17T11:40:43.513483-05:00"
96106
description: Helm chart for configuring the WebLogic operator.
97107
digest: cbc6caaa6eb28e3c7e906ede14b2ae511a0b35fc12a8e3ab629155b09993e8b2
98108
name: weblogic-operator
99109
urls:
100110
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.3.0.tgz
101111
version: 2.3.0
102112
- apiVersion: v1
103-
created: "2020-11-24T15:04:35.366089-05:00"
113+
created: "2020-12-17T11:40:43.512156-05:00"
104114
description: Helm chart for configuring the WebLogic operator.
105115
digest: 23d5a1c554fa8211cc1e86b7ade09460917cb2069e68fb4bfdddafc8db44fdcd
106116
name: weblogic-operator
107117
urls:
108118
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.2.1.tgz
109119
version: 2.2.1
110120
- apiVersion: v1
111-
created: "2020-11-24T15:04:35.364344-05:00"
121+
created: "2020-12-17T11:40:43.51064-05:00"
112122
description: Helm chart for configuring the WebLogic operator.
113123
digest: bba303686cb55d84fe8c0d693a2436e7e686b028085b56e012f6381699a3911f
114124
name: weblogic-operator
115125
urls:
116126
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.2.0.tgz
117127
version: 2.2.0
118128
- apiVersion: v1
119-
created: "2020-11-24T15:04:35.356977-05:00"
129+
created: "2020-12-17T11:40:43.509172-05:00"
120130
description: Helm chart for configuring the WebLogic operator.
121131
digest: 391e23c0969ada5f0cd2a088ddc6f11f237f57521801ed3925db2149a8437a0d
122132
name: weblogic-operator
123133
urls:
124134
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.1.tgz
125135
version: "2.1"
126136
- apiVersion: v1
127-
created: "2020-11-24T15:04:35.355261-05:00"
137+
created: "2020-12-17T11:40:43.507864-05:00"
128138
description: Helm chart for configuring the WebLogic operator.
129139
digest: 298acda78ab73db6b7ba6f2752311bfa40c65874e03fb196b70976192211c1a5
130140
name: weblogic-operator
131141
urls:
132142
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.0.1.tgz
133143
version: 2.0.1
134-
generated: "2020-11-24T15:04:35.309043-05:00"
144+
generated: "2020-12-17T11:40:43.480949-05:00"
10.9 KB
Binary file not shown.

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>3.1.0</version>
10+
<version>3.1.1</version>
1111
</parent>
1212

1313
<artifactId>integration-tests</artifactId>

json-schema-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>operator-parent</artifactId>
99
<groupId>oracle.kubernetes</groupId>
10-
<version>3.1.0</version>
10+
<version>3.1.1</version>
1111
</parent>
1212

1313
<artifactId>jsonschema-maven-plugin</artifactId>

json-schema/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>operator-parent</artifactId>
99
<groupId>oracle.kubernetes</groupId>
10-
<version>3.1.0</version>
10+
<version>3.1.1</version>
1111
</parent>
1212

1313
<artifactId>json-schema</artifactId>

kubernetes/charts/weblogic-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ name: weblogic-operator
66
description: Helm chart for configuring the WebLogic operator.
77

88
type: application
9-
version: 3.1.0
10-
appVersion: 3.1.0
9+
version: 3.1.1
10+
appVersion: 3.1.1

kubernetes/charts/weblogic-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ domainNamespaces:
6363
enableClusterRoleBinding: false
6464

6565
# image specifies the Docker image containing the operator.
66-
image: "oracle/weblogic-kubernetes-operator:3.1.0"
66+
image: "oracle/weblogic-kubernetes-operator:3.1.1"
6767

6868
# imagePullPolicy specifies the image pull policy for the operator's Docker image.
6969
imagePullPolicy: IfNotPresent

kubernetes/hands-on-lab/tutorials/install.operator.ocishell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Note the arguments and values:
6565
- The name of the Helm release.
6666
- The relative path to the Helm chart.
6767
- **namespace**: The namespace where the operator is to be deployed.
68-
- **image**: The prebuilt operator 3.1.0 image, available on the public Docker Hub.
68+
- **image**: The prebuilt operator 3.1.1 image, available on the public Docker Hub.
6969
- **serviceAccount**: The service account required to run the operator.
7070
- **enableClusterRoleBinding**: Grants the operator privileges in all cluster namespaces.
7171
- **domainNamespaceSelectionStrategy**: Chooses how the operator will select namespaces it manages.
@@ -78,7 +78,7 @@ Execute the following `helm install`:
7878
helm install sample-weblogic-operator \
7979
kubernetes/charts/weblogic-operator \
8080
--namespace sample-weblogic-operator-ns \
81-
--set "image=oracle/weblogic-kubernetes-operator:3.1.0" \
81+
--set "image=oracle/weblogic-kubernetes-operator:3.1.1" \
8282
--set "serviceAccount=sample-weblogic-operator-sa" \
8383
--set "enableClusterRoleBinding=true" \
8484
--set "domainNamespaceSelectionStrategy=LabelSelector" \

kubernetes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>oracle.kubernetes</groupId>
1111
<artifactId>operator-parent</artifactId>
12-
<version>3.1.0</version>
12+
<version>3.1.1</version>
1313
</parent>
1414

1515
<artifactId>installation-tests</artifactId>

operator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>oracle.kubernetes</groupId>
99
<artifactId>operator-parent</artifactId>
10-
<version>3.1.0</version>
10+
<version>3.1.1</version>
1111
</parent>
1212

1313
<artifactId>weblogic-kubernetes-operator</artifactId>

operator/src/main/java/oracle/kubernetes/operator/steps/ManagedServerUpIteratorStep.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,11 @@ public NextAction apply(Packet packet) {
9494
}
9595

9696
if (!work.isEmpty()) {
97-
return doForkJoin(DomainStatusUpdater.createStatusUpdateStep(getNext()), packet, work);
97+
return doForkJoin(DomainStatusUpdater.createStatusUpdateStep(
98+
new ManagedServerUpAfterStep(getNext())), packet, work);
9899
}
99100

100-
return doNext(DomainStatusUpdater.createStatusUpdateStep(getNext()), packet);
101+
return doNext(DomainStatusUpdater.createStatusUpdateStep(new ManagedServerUpAfterStep(getNext())), packet);
101102
}
102103

103104

@@ -167,7 +168,7 @@ void add(StepAndPacket serverToStart) {
167168
public NextAction apply(Packet packet) {
168169

169170
if (startDetailsQueue.isEmpty()) {
170-
return doNext(new ManagedServerUpAfterStep(getNext()), packet);
171+
return doNext(getNext(), packet);
171172
} else if (hasServerAvailableToStart(packet.getSpi(DomainPresenceInfo.class))) {
172173
numStarted.getAndIncrement();
173174
return doForkJoin(this, packet, Collections.singletonList(startDetailsQueue.poll()));

0 commit comments

Comments
 (0)