Skip to content

Commit 6a333fd

Browse files
Merge branch 'main' into 4.21-md5sum-to-sha512sum
2 parents f4539b8 + 889fc62 commit 6a333fd

File tree

194 files changed

+445
-304
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+445
-304
lines changed

agent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.cloudstack</groupId>
2626
<artifactId>cloudstack</artifactId>
27-
<version>4.21.0.0-SNAPSHOT</version>
27+
<version>4.22.0.0-SNAPSHOT</version>
2828
</parent>
2929
<dependencies>
3030
<dependency>

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.cloudstack</groupId>
2626
<artifactId>cloudstack</artifactId>
27-
<version>4.21.0.0-SNAPSHOT</version>
27+
<version>4.22.0.0-SNAPSHOT</version>
2828
</parent>
2929
<dependencies>
3030
<dependency>

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.cloudstack</groupId>
2727
<artifactId>cloudstack</artifactId>
28-
<version>4.21.0.0-SNAPSHOT</version>
28+
<version>4.22.0.0-SNAPSHOT</version>
2929
</parent>
3030
<dependencies>
3131
<dependency>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.cloudstack</groupId>
2626
<artifactId>cloudstack</artifactId>
27-
<version>4.21.0.0-SNAPSHOT</version>
27+
<version>4.22.0.0-SNAPSHOT</version>
2828
</parent>
2929
<dependencies>
3030
<dependency>

debian/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
cloudstack (4.22.0.0-SNAPSHOT) unstable; urgency=low
2+
3+
* Update the version to 4.22.0.0-SNAPSHOT
4+
5+
-- the Apache CloudStack project <[email protected]> Thu, Aug 28 11:58:36 2025 +0530
6+
7+
cloudstack (4.21.0.0) unstable; urgency=low
8+
9+
* Update the version to 4.21.0.0
10+
11+
-- the Apache CloudStack project <[email protected]> Fri, 22 Aug 2025 11:42:37 +0530
12+
113
cloudstack (4.21.0.0-SNAPSHOT) unstable; urgency=low
214

315
* Update the version to 4.21.0.0-SNAPSHOT

developer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.cloudstack</groupId>
2727
<artifactId>cloudstack</artifactId>
28-
<version>4.21.0.0-SNAPSHOT</version>
28+
<version>4.22.0.0-SNAPSHOT</version>
2929
</parent>
3030
<dependencies>
3131
<dependency>

engine/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.cloudstack</groupId>
2626
<artifactId>cloud-engine</artifactId>
27-
<version>4.21.0.0-SNAPSHOT</version>
27+
<version>4.22.0.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<dependencies>

engine/components-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.cloudstack</groupId>
2626
<artifactId>cloud-engine</artifactId>
27-
<version>4.21.0.0-SNAPSHOT</version>
27+
<version>4.22.0.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<dependencies>

engine/orchestration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.cloudstack</groupId>
2626
<artifactId>cloud-engine</artifactId>
27-
<version>4.21.0.0-SNAPSHOT</version>
27+
<version>4.22.0.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<dependencies>

engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import java.util.Arrays;
2424
import java.util.Collections;
2525
import java.util.Comparator;
26+
import java.util.Date;
2627
import java.util.HashMap;
2728
import java.util.HashSet;
2829
import java.util.LinkedHashMap;
@@ -1310,6 +1311,7 @@ protected void acquireLockAndCheckIfIpv4IsFree(Network network, String requested
13101311
IPAddressVO lockedIpVO = _ipAddressDao.acquireInLockTable(ipVO.getId());
13111312
validateLockedRequestedIp(ipVO, lockedIpVO);
13121313
lockedIpVO.setState(IPAddressVO.State.Allocated);
1314+
lockedIpVO.setAllocatedTime(new Date());
13131315
_ipAddressDao.update(lockedIpVO.getId(), lockedIpVO);
13141316
} finally {
13151317
_ipAddressDao.releaseFromLockTable(ipVO.getId());

0 commit comments

Comments
 (0)