Skip to content

Commit

Permalink
Fix gzip configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Kulasek-Szwed committed Nov 10, 2020
1 parent 5e1f465 commit 668492a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public WireMockServer wireMockServer(WireMockProperties wireMockProperties, Mapp
o.extensions(GroovyResponseTransformer.class);
o.enableBrowserProxying(wireMockProperties.isBrowserProxying());
o.notifier(new Slf4jNotifier(wireMockProperties.isVerbose()));
o.gzipDisabled(wireMockProperties.isGzip());
o.gzipDisabled(!wireMockProperties.isGzip());
return new WireMockServer(o);
}
}

0 comments on commit 668492a

Please sign in to comment.