forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Bring google-cloud-java changes to this fork. #1
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BigQuery's cancellation mechanism is best-effort notification to the job server running cancellation. Depending on a timing factors, the cancellation can be ignored, arrive after job completion, or arrive in time to trigger state transition (which will yield an error). This change removes the expectation that cancelling a job won't yield an error, which is incorrect for the last case.
This change address the hashcode change problem of Query after calling toProto.
* cleanup unused dependency of contrib-google-cloud-logging-logback * cleanup unused dependency of contrib-google-cloud-nio-examples * cleanup unused dependency of contrib-google-cloud-notification * cleanup unused dependency of contrib-google-cloud-logging-logback * cleanup unused dependency of contrib-google-cloud-nio * cleanup unused dependency of contrib-google-cloud-notification
* cleanup unused dependency of google-cloud-containeranalysis * remove unused dependency of containeranalysis
* cleanup unused dependency of google-cloud-container * remove unused dependency of container
* cleanup unused dependency of google-cloud-bigquerydatatransfer * remove unsed dependency from bigquery datatransfer
* cleanup unused dependency of google-cloud-bigquerystorage * remove unsed dependency from bigquerystorage * remove whitespace
* cleanup unused dependency of google-cloud-bigtable * remove unsed depenedency of bigtable
* cleanup unused dependency of contrib-google-cloud-datalabeling * remove unused dependency of datalabeling * Update pom.xml
* cleanup unused dependency of contrib-google-cloud-datacatalog * remove unused dependency of datacatelog * Update pom.xml
* Add integration test config for all remaining clients. These are added regardless of whether or not the client actually contains any integration tests yet. * Include smoke tests in integration test runs * If specifying includes for failsafe, we must specify all patterns
* do not hand out a closed Spanner instance SpannerOptions caches any Spanner instance that has been created, and hands this cached instance out to all subsequent calls to SpannerOptions.getService(). This also included closed Spanner instances. The getService() method now returns an error if the Spanner instance has already been closed. * fix small merge error * create a new instance if the service/rpc is closed SpannerOptions.getService() and SpannerOptions.getRpc() should return a new instance instead of throwing an exception if the service/rpc object has been closed. * add test case to ensure correct caching behavior * use shouldRefreshService instead of createNewService * fix merge conflicts * added documentation to shouldRefresh... methods * removed overrides only for comments * fixed naming * added assertions for isClosed() * fixed formatting
…rev20190623-1.30.1 (#5629)
…ev20190618-1.30.1 (#5630)
No-op for java - added ruby namespace to the proto configuration.
Adds CandidateAvailabilityFilter Adds result_set_id to SearchProfileRequest/Response
* cleanup unused dependency of spanner * remove unused dependency of spanner
* cleanup unused dependency of schedular * remove unused dependency of schedular
* cleanup unused dependency of recaptchaenterprise * remove unused dependency of recaptchaenterprise
* cleanup unused dependency of contrib-google-cloud-pubsub * remove unused dependency of pubsub * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-phishingprotection * remove unused dependency of phishingprotection * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-os-login * remove unused dependency of os-login * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-monitoring * remove unused dependency of monitoring * add the newline at the end of the file
* cleanup unused dependency of securitycenter * remove unused dependency of securitycenter
* cleanup unused dependency of speech * remove unused dependency of speech
* cleanup unused dependency of redis * remove unused dependency of redis
* cleanup unused dependency of contrib-google-cloud-language * remove unused dependency of language * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-kms * remove unused dependency grpc stub * remove unused dependency of kms * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-iot * remove unused dependency of iot * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-iamcredentials * remove unused dependency of imacredential * resolve new line at end of file
* cleanup unused dependency of contrib-google-cloud-errorreporting * remove unused dependency of errorreporting * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-dlp * remove unused dependency of dlp * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-dataproc * remove unused dependency of dataproc * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-dialogflow * remove unused dependency of dailogflow * add the newline at the end of the file
* cleanup unused dependency of contrib-google-cloud-logging * remove unused dependency of logging * add the newline at the end of the file
* Add smoke test extracted from java-docs-samples repo * Create task queue if not already exists * Run smoke tests as part of integration tests * Fix mismerge * Fix code format * Fix imports * Fix format
* cleanup unused dependency of talent * remove unused dependency of talent
* cleanup unused dependency of tasks * remove unused dependency of tasks
* cleanup unused dependency of texttospeech * remove unused dependency of texttospeech
* cleanup unused dependency of trace * remove unused dependency of trace
* update comment of testlib * remove extra line
The tests can be run inside or outside of VPC service perimeter. The input to the script should be the following environment variables. PROJECT_ID: a project that is inside the VPC perimeter. GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT: a project that is outside the VPC perimeter.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bring google-cloud-java changes to this fork.