Skip to content

Commit ed54488

Browse files
committed
LDEV-6063 cfflush should not set Connection: close
1 parent 32a7ce1 commit ed54488

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/src/main/java/lucee/runtime/writer/CFMLWriterImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public void clearBuffer() {
208208

209209
@Override
210210
public void flush() throws IOException {
211-
flushBuffer(true);
211+
flushBuffer(this.closeConn);
212212
out.flush();
213213
response.flushBuffer();
214214
}

loader/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project default="core" basedir="." name="Lucee"
33
xmlns:resolver="antlib:org.apache.maven.resolver.ant">
44

5-
<property name="version" value="7.1.0.29-ALPHA"/>
5+
<property name="version" value="7.1.0.30-ALPHA"/>
66

77
<taskdef uri="antlib:org.apache.maven.resolver.ant" resource="org/apache/maven/resolver/ant/antlib.xml">
88
<classpath>

loader/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>org.lucee</groupId>
55
<artifactId>lucee</artifactId>
6-
<version>7.1.0.29-ALPHA</version>
6+
<version>7.1.0.30-ALPHA</version>
77
<packaging>jar</packaging>
88

99
<name>Lucee Loader Build</name>

0 commit comments

Comments
 (0)