From 851eb4bf39792c333f0b5eabe65045673be33555 Mon Sep 17 00:00:00 2001 From: Ashish Pratap Singh Date: Sat, 1 Jun 2024 23:13:41 -0700 Subject: [PATCH] update load balancer directory name --- .../IPHash.java | 0 .../LeastConnections.java | 0 .../LeastResponseTime.java | 0 .../RoundRobin.java | 0 .../WeightedRoundRobin.java | 0 .../ip_hash.py | 0 .../least_connections.py | 0 .../least_response_time.py | 0 .../round_robin.py.py | 0 .../weighted_round_robin.py | 0 10 files changed, 0 insertions(+), 0 deletions(-) rename implementations/java/{load balancer algorithms => load_balancing_algorithms}/IPHash.java (100%) rename implementations/java/{load balancer algorithms => load_balancing_algorithms}/LeastConnections.java (100%) rename implementations/java/{load balancer algorithms => load_balancing_algorithms}/LeastResponseTime.java (100%) rename implementations/java/{load balancer algorithms => load_balancing_algorithms}/RoundRobin.java (100%) rename implementations/java/{load balancer algorithms => load_balancing_algorithms}/WeightedRoundRobin.java (100%) rename implementations/python/{load balancer algorithms => load_balancing_algorithms}/ip_hash.py (100%) rename implementations/python/{load balancer algorithms => load_balancing_algorithms}/least_connections.py (100%) rename implementations/python/{load balancer algorithms => load_balancing_algorithms}/least_response_time.py (100%) rename implementations/python/{load balancer algorithms => load_balancing_algorithms}/round_robin.py.py (100%) rename implementations/python/{load balancer algorithms => load_balancing_algorithms}/weighted_round_robin.py (100%) diff --git a/implementations/java/load balancer algorithms/IPHash.java b/implementations/java/load_balancing_algorithms/IPHash.java similarity index 100% rename from implementations/java/load balancer algorithms/IPHash.java rename to implementations/java/load_balancing_algorithms/IPHash.java diff --git a/implementations/java/load balancer algorithms/LeastConnections.java b/implementations/java/load_balancing_algorithms/LeastConnections.java similarity index 100% rename from implementations/java/load balancer algorithms/LeastConnections.java rename to implementations/java/load_balancing_algorithms/LeastConnections.java diff --git a/implementations/java/load balancer algorithms/LeastResponseTime.java b/implementations/java/load_balancing_algorithms/LeastResponseTime.java similarity index 100% rename from implementations/java/load balancer algorithms/LeastResponseTime.java rename to implementations/java/load_balancing_algorithms/LeastResponseTime.java diff --git a/implementations/java/load balancer algorithms/RoundRobin.java b/implementations/java/load_balancing_algorithms/RoundRobin.java similarity index 100% rename from implementations/java/load balancer algorithms/RoundRobin.java rename to implementations/java/load_balancing_algorithms/RoundRobin.java diff --git a/implementations/java/load balancer algorithms/WeightedRoundRobin.java b/implementations/java/load_balancing_algorithms/WeightedRoundRobin.java similarity index 100% rename from implementations/java/load balancer algorithms/WeightedRoundRobin.java rename to implementations/java/load_balancing_algorithms/WeightedRoundRobin.java diff --git a/implementations/python/load balancer algorithms/ip_hash.py b/implementations/python/load_balancing_algorithms/ip_hash.py similarity index 100% rename from implementations/python/load balancer algorithms/ip_hash.py rename to implementations/python/load_balancing_algorithms/ip_hash.py diff --git a/implementations/python/load balancer algorithms/least_connections.py b/implementations/python/load_balancing_algorithms/least_connections.py similarity index 100% rename from implementations/python/load balancer algorithms/least_connections.py rename to implementations/python/load_balancing_algorithms/least_connections.py diff --git a/implementations/python/load balancer algorithms/least_response_time.py b/implementations/python/load_balancing_algorithms/least_response_time.py similarity index 100% rename from implementations/python/load balancer algorithms/least_response_time.py rename to implementations/python/load_balancing_algorithms/least_response_time.py diff --git a/implementations/python/load balancer algorithms/round_robin.py.py b/implementations/python/load_balancing_algorithms/round_robin.py.py similarity index 100% rename from implementations/python/load balancer algorithms/round_robin.py.py rename to implementations/python/load_balancing_algorithms/round_robin.py.py diff --git a/implementations/python/load balancer algorithms/weighted_round_robin.py b/implementations/python/load_balancing_algorithms/weighted_round_robin.py similarity index 100% rename from implementations/python/load balancer algorithms/weighted_round_robin.py rename to implementations/python/load_balancing_algorithms/weighted_round_robin.py