We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bdb979 commit 2207b62Copy full SHA for 2207b62
core/src/main/java/hudson/model/Fingerprint.java
@@ -1036,7 +1036,7 @@ protected Object readResolve() {
1036
}
1037
1038
void addWithoutSaving(@NonNull String jobFullName, int n) {
1039
- synchronized (this) {
+ synchronized (usages) { // TODO why not synchronized (this) like some, though not all, other accesses?
1040
RangeSet r = usages.get(jobFullName);
1041
if (r == null) {
1042
r = new RangeSet();
0 commit comments