Skip to content

Commit c7d40c3

Browse files
committed
fixup
1 parent b1a0837 commit c7d40c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/RabbitMQ.Client/ThrottlingRateLimiter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ private int CalculateDelay()
151151
}
152152

153153
double percentageUsed = 1.0 - (availablePermits / (double)_maxConcurrency);
154-
return (int)(percentageUsed * 100);
154+
return (int)(percentageUsed * 1000);
155155
}
156156
}
157157
}

0 commit comments

Comments
 (0)