Skip to content

Commit c5ac241

Browse files
authored
Fixed non-tool path prefix file names for python conventions (#2000)
1 parent a32d81b commit c5ac241

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The scripts in this directory provide various examples of using Confluent's Pyth
44
* [asyncio_example.py](asyncio_example.py): AsyncIO webserver with Kafka producer.
55
* [consumer.py](consumer.py): Read messages from a Kafka topic.
66
* [producer.py](producer.py): Read lines from stdin and send them to a Kafka topic.
7-
* [eos-transactions.py](eos-transactions.py): Transactional producer with exactly once semantics (EOS).
7+
* [eos_transactions.py](eos_transactions.py): Transactional producer with exactly once semantics (EOS).
88
* [avro_producer.py](avro_producer.py): Produce Avro serialized data using AvroSerializer.
99
* [avro_consumer.py](avro_consumer.py): Read Avro serialized data using AvroDeserializer.
1010
* [json_producer.py](json_producer.py): Produce JSON serialized data using JSONSerializer.

examples/eos-transactions.py renamed to examples/eos_transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def main(args):
109109

110110
producer = Producer({
111111
'bootstrap.servers': brokers,
112-
'transactional.id': 'eos-transactions.py'
112+
'transactional.id': 'eos_transactions.py'
113113
})
114114

115115
# Initialize producer transaction.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)