-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce HTTP 1.1/JSON support for GAPIC clients #857
Conversation
this is exciting!! |
One extra step we need to do before we release: we need to refresh all of the generated protos in proto-client-php. Otherwise, we might have refreshed gapic clients, but old protos. I will go through and do this now. |
src/Bigtable/V2/BigtableClient.php
Outdated
@@ -1,12 +1,12 @@ | |||
<?php | |||
/* | |||
* Copyright 2017, Google LLC All rights reserved. | |||
* Copyright 2018 Google LLC |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -1,12 +1,12 @@ | |||
<?php | |||
/* | |||
* Copyright 2017, Google LLC All rights reserved. | |||
* Copyright 2018 Google LLC |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -1,12 +1,12 @@ | |||
<?php | |||
/* | |||
* Copyright 2017, Google LLC All rights reserved. | |||
* Copyright 2018 Google LLC |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -1,12 +1,12 @@ | |||
<?php | |||
/* | |||
* Copyright 2017, Google LLC All rights reserved. | |||
* Copyright 2018 Google LLC |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Grpc\STATUS_INTERNAL, | ||
Grpc\STATUS_UNAVAILABLE, | ||
Grpc\STATUS_DATA_LOSS | ||
Code::UNKNOWN, |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -1,12 +1,12 @@ | |||
<?php | |||
/* | |||
* Copyright 2017, Google LLC All rights reserved. | |||
* Copyright 2018 Google LLC |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -1,12 +1,12 @@ | |||
<?php | |||
/* | |||
* Copyright 2017, Google LLC All rights reserved. | |||
* Copyright 2018 Google LLC |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -1,12 +1,12 @@ | |||
<?php | |||
/* | |||
* Copyright 2017, Google LLC All rights reserved. | |||
* Copyright 2018 Google LLC |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* https://www.apache.org/licenses/LICENSE-2.0 |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
composer.json
Outdated
"guzzlehttp/guzzle": "^5.3|^6.0", | ||
"guzzlehttp/psr7": "^1.2", | ||
"monolog/monolog": "~1", | ||
"psr/http-message": "1.0.*", | ||
"ramsey/uuid": "~3", | ||
"google/proto-client": "^0.30.0", | ||
"google/gax": "^0.29" | ||
"google/gax": "dev-json-transport" |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the Debugger side, everything looks good here.
Is the system test passing? |
Running them now, will report back! |
proto-client-php 0.31.0 has been released with updated protos (touching Bigtable, BigtableAdmin, Monitoring and OsLogin) |
Fantastic! Thanks Mike. |
private static function getProjectNameTemplate() | ||
{ | ||
if (self::$projectNameTemplate == null) { | ||
if (null == self::$projectNameTemplate) { |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Can you also make sure the system test is passing?
@@ -1,12 +1,12 @@ | |||
<?php | |||
/* | |||
* Copyright 2017, Google LLC All rights reserved. | |||
* Copyright 2018 Google LLC |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@tmatsuo System tests came back good. |
Thanks for the review all! |
Toolkit PR: googleapis/gapic-generator#1787 (review)
GAX PR: googleapis/gax-php#118
Todos: