Skip to content

Commit 39137f8

Browse files
fix: [SMP-1189]: Set module license id null when creating new license for SMP (#46611)
* set id to null of new module license in smp * Bump patch version
1 parent e607352 commit 39137f8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

930-ng-license-manager/src/main/java/io/harness/licensing/services/SMPLicenseServiceImpl.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ private void createOrUpdateModuleLicenses(List<ModuleLicenseDTO> moduleLicenseDT
114114
moduleLicenseDTO.setId(existingLicense.getId());
115115
updateModuleLicense(moduleLicenseDTO);
116116
} else {
117+
moduleLicenseDTO.setId(null);
117118
createModuleLicense(moduleLicenseDTO);
118119
}
119120
}

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
build.majorVersion=1
22
build.minorVersion=0
3-
build.number=78926
3+
build.number=78927
44
build.patch=000
55
delegate.version=23.03.12
66
delegate.patch=000

0 commit comments

Comments
 (0)