Skip to content

Commit 632537d

Browse files
committed
fixup(flagd): remove merge conflict error as stated by warber
Signed-off-by: Simon Schrottner <[email protected]>
1 parent faca6a0 commit 632537d

File tree

1 file changed

+0
-14
lines changed
  • providers/openfeature-provider-flagd/src/openfeature/contrib/provider/flagd/resolvers

1 file changed

+0
-14
lines changed

providers/openfeature-provider-flagd/src/openfeature/contrib/provider/flagd/resolvers/grpc.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ def __init__(
6565
self.deadline = config.deadline_ms * 0.001
6666
self.connected = False
6767

68-
self._cache: typing.Optional[BaseCacheImpl] = (
69-
LRUCache(maxsize=self.config.max_cache_size)
70-
if self.config.cache_type == CacheType.LRU
71-
else None
72-
)
73-
7468
def _create_stub(
7569
self,
7670
) -> typing.Tuple[evaluation_pb2_grpc.ServiceStub, grpc.Channel]:
@@ -86,14 +80,6 @@ def _create_stub(
8680

8781
def initialize(self, evaluation_context: EvaluationContext) -> None:
8882
self.connect()
89-
self.retry_backoff_seconds = 0.1
90-
self.connected = False
91-
92-
self._cache = (
93-
LRUCache(maxsize=self.config.max_cache_size)
94-
if self.config.cache_type == CacheType.LRU
95-
else None
96-
)
9783

9884
def shutdown(self) -> None:
9985
self.active = False

0 commit comments

Comments
 (0)