From 1ae397e9f3ed8e22d59168ff7365b0fa5a5bb5b1 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Wed, 14 Mar 2012 11:30:27 -0500 Subject: [PATCH] Changing CURLTransport to the default for now. --- src/HPCloud/Bootstrap.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/HPCloud/Bootstrap.php b/src/HPCloud/Bootstrap.php index 7163270..58a2102 100644 --- a/src/HPCloud/Bootstrap.php +++ b/src/HPCloud/Bootstrap.php @@ -121,7 +121,11 @@ class Bootstrap { public static $config = array( // The transport implementation. By default, we use the PHP stream // wrapper's HTTP mechanism to process transactions. - 'transport' => '\HPCloud\Transport\PHPStreamTransport', + //'transport' => '\HPCloud\Transport\PHPStreamTransport', + + // This is the default transport while a bug persists in the + // Identity Services REST service. + 'transport' => '\HPCloud\Transport\CURLTransport', ); /**