| Index: utils/pub/oauth2.dart
|
| diff --git a/utils/pub/oauth2.dart b/utils/pub/oauth2.dart
|
| index c7a87fdea7603274411a40b0f716f48f566f88e6..954936a19fc9666e3abf3cb765113a86988aae25 100644
|
| --- a/utils/pub/oauth2.dart
|
| +++ b/utils/pub/oauth2.dart
|
| @@ -166,13 +166,11 @@ Future<Client> _authorize() {
|
| if (queryString == null) queryString = '';
|
| response.statusCode = 302;
|
| response.headers.set('location', 'http://pub.dartlang.org/authorized');
|
| - return Futures.wait([
|
| - closeHttpResponse(request, response),
|
| - grant.handleAuthorizationResponse(queryToMap(queryString))
|
| - ]);
|
| - }).transform((results) {
|
| + response.outputStream.close();
|
| + return grant.handleAuthorizationResponse(queryToMap(queryString));
|
| + }).transform((client) {
|
| server.close();
|
| - return results[1];
|
| + return client;
|
| }), completer);
|
| });
|
| server.listen('127.0.0.1', 0);
|
|
|