Skip to content

Commit

Permalink
fix #440 - rename reserved private key used by channel attributes cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Maldini committed Sep 23, 2018
1 parent 4ce502f commit f732811
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/reactor/netty/ReactorNetty.java
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,9 @@ public Mono<Void> then() {
static final ConnectionObserver NOOP_LISTENER = (connection, newState) -> {};

static final Logger log = Loggers.getLogger(ReactorNetty.class);
static final AttributeKey<Boolean> PERSISTENT_CHANNEL = AttributeKey.newInstance("PERSISTENT_CHANNEL");
static final AttributeKey<Boolean> PERSISTENT_CHANNEL = AttributeKey.newInstance("$PERSISTENT_CHANNEL");

static final AttributeKey<Connection> CONNECTION = AttributeKey.newInstance("CONNECTION");
static final AttributeKey<Connection> CONNECTION = AttributeKey.newInstance("$CONNECTION");

static final Consumer<? super FileChannel> fileCloser = fc -> {
try {
Expand Down

0 comments on commit f732811

Please sign in to comment.