Skip to content

Commit d15f529

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

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
@@ -63,12 +63,6 @@ def __init__(
6363
self.deadline = config.deadline * 0.001
6464
self.connected = False
6565

66-
self._cache: typing.Optional[BaseCacheImpl] = (
67-
LRUCache(maxsize=self.config.max_cache_size)
68-
if self.config.cache_type == CacheType.LRU
69-
else None
70-
)
71-
7266
def _create_stub(
7367
self,
7468
) -> typing.Tuple[evaluation_pb2_grpc.ServiceStub, grpc.Channel]:
@@ -87,14 +81,6 @@ def _create_stub(
8781

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

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

0 commit comments

Comments
 (0)