Skip to content
This repository has been archived by the owner on Mar 18, 2021. It is now read-only.

Commit

Permalink
Merge pull request #15 from stablekernel/an/pipelineOptions
Browse files Browse the repository at this point in the history
Fixed null pipelineOptions bug
  • Loading branch information
itsjoeconway committed Oct 6, 2015
2 parents 7e961dd + 4143711 commit 0d52dad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/application.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ class ApplicationInstanceConfiguration {
this.isIpv6Only = config.isIpv6Only,
this.isUsingClientCertificate = config.isUsingClientCertificate,
this.serverCertificateName = config.serverCertificateName,
this.shared = config.shared;
this.shared = config.shared,
this.pipelineOptions = config.pipelineOptions;
}

/// A abstract class that concrete subclasses will implement to provide request handling behavior.
Expand Down

0 comments on commit 0d52dad

Please sign in to comment.