Skip to content
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

fix(deps): Require google-api-core>=1.34.1 #1080

Merged
merged 6 commits into from Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions google/pubsub_v1/types/pubsub.py
Expand Up @@ -201,8 +201,8 @@ class AwsKinesis(proto.Message):
"""

class State(proto.Enum):
r"""Possible states for managed ingestion from Amazon Kinesis
Data Streams.
r"""Possible states for ingestion from Amazon Kinesis Data
Streams.

Values:
STATE_UNSPECIFIED (0):
Expand Down Expand Up @@ -317,8 +317,8 @@ class Topic(proto.Message):
Output only. An output-only field indicating
the state of the topic.
ingestion_data_source_settings (google.pubsub_v1.types.IngestionDataSourceSettings):
Optional. Settings for managed ingestion from
a data source into this topic.
Optional. Settings for ingestion from a data
source into this topic.
"""

class State(proto.Enum):
Expand Down
Expand Up @@ -8,7 +8,7 @@
],
"language": "PYTHON",
"name": "google-cloud-pubsub",
"version": "2.19.4"
"version": "0.1.0"
},
"snippets": [
{
Expand Down
3 changes: 2 additions & 1 deletion tests/unit/gapic/pubsub_v1/test_publisher.py
Expand Up @@ -1738,7 +1738,8 @@ def test_publish_flattened():
# Call the method with a truthy value for each flattened field,
# using the keyword arguments to the method.
client.publish(
topic="topic_value", messages=[pubsub.PubsubMessage(data=b"data_blob")]
topic="topic_value",
messages=[pubsub.PubsubMessage(data=b"data_blob")],
)

# Establish that the underlying call was made with the expected
Expand Down