Skip to content

Commit

Permalink
chore: remove unused event scheduler
Browse files Browse the repository at this point in the history
The event scheduler isn't used directly in the Momento
implementation. We are removing it for now.
  • Loading branch information
malandis committed Oct 30, 2024
1 parent 0c78acd commit 4c2d1e9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/momento/lettuce/MomentoRedisReactiveClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ public class MomentoRedisReactiveClient<K, V>
private final CacheClient client;
private final String cacheName;
private final RedisCodecByteArrayConverter<K, V> codec;
private volatile EventExecutorGroup scheduler;

/**
* Creates a new {@link MomentoRedisReactiveClient}.
Expand All @@ -125,7 +124,6 @@ public MomentoRedisReactiveClient(CacheClient client, String cacheName, RedisCod
this.client = client;
this.cacheName = cacheName;
this.codec = new RedisCodecByteArrayConverter<>(codec);
this.scheduler = ImmediateEventExecutor.INSTANCE;
}

/**
Expand Down

0 comments on commit 4c2d1e9

Please sign in to comment.