We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b508069 commit 382c2f9Copy full SHA for 382c2f9
1 file changed
src/network-allocator.ts
@@ -35,9 +35,9 @@ export async function getExistingDockerSubnets(): Promise<string[]> {
35
/**
36
* Generates a random subnet in Docker's private IP range that doesn't conflict with existing networks
37
* Uses 172.16-31.x.0/24 range (Docker's default bridge network range)
38
+ * @internal
39
*/
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
40
-export async function _generateRandomSubnet(): Promise<{ subnet: string; squidIp: string; agentIp: string }> {
+export async function generateRandomSubnet(): Promise<{ subnet: string; squidIp: string; agentIp: string }> {
41
const existingSubnets = await getExistingDockerSubnets();
42
const MAX_RETRIES = 50;
43
0 commit comments