-
Notifications
You must be signed in to change notification settings - Fork 595
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
Video Intelligence 0.3.2 #2625
Video Intelligence 0.3.2 #2625
Conversation
Fixes issues with long-running operations.
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.
One nit. LGTM
@@ -27,10 +21,12 @@ var gapic = { | |||
v1beta2: require('./v1beta2'), | |||
}; | |||
var gaxGrpc = require('google-gax').grpc(); | |||
var googleProtoFiles = require('google-proto-files'); |
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.
@@ -13,12 +13,6 @@ | |||
* See the License for the specific language governing permissions and | |||
* limitations under the License. | |||
*/ | |||
|
|||
/*! |
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.
'google/cloud/videointelligence/v1beta2/video_intelligence.proto') | ||
).google.cloud.videointelligence.v1beta2); | ||
extend(v1beta1Protos, gaxGrpc.loadProto( | ||
path.join(__dirname, '..', 'protos'), 'google/cloud/videointelligence/v1beta1/video_intelligence.proto') |
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.
@@ -26,10 +26,13 @@ | |||
], | |||
"dependencies": { | |||
"extend": "^3.0", | |||
"google-gax": "^0.13.5" | |||
"google-gax": "^0.14.0", | |||
"google-proto-files": "^0.12.0", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -76,11 +78,19 @@ function VideoIntelligenceServiceClient(gaxGrpc, loadedProtos, opts) { | |||
grpc: gaxGrpc.grpc | |||
}).operationsClient(opts); | |||
|
|||
var protoFilesRoot = new gax.grpc.GoogleProtoFilesRoot(); | |||
protoFilesRoot = protobuf.loadSync( |
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.
}, | ||
"devDependencies": { | ||
"mocha": "^3.2.0" | ||
"mocha": "^3.2.0", | ||
"through2": "^2.0.3" |
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 release fixes a bug with long-running operations.
Closes #2622.