Skip to content

Commit

Permalink
Fix kafka consume value_spec docs
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Jul 24, 2023
1 parent 3c4bea4 commit e53d6d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/server/deephaven/stream/kafka/consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def consume(
It can be the result of calling one of the functions: simple_spec(),avro_spec() or json_spec() in this
module, or the predefined KeyValueSpec.IGNORE or KeyValueSpec.FROM_PROPERTIES. The default is None which
works the same as KeyValueSpec.FROM_PROPERTIES, in which case, the kafka_config param should include values
for dictionary keys 'deephaven.key.column.name' and 'deephaven.key.column.type', for the single resulting
for dictionary keys 'deephaven.value.column.name' and 'deephaven.value.column.type', for the single resulting
column name and type
table_type (TableType): a TableType, default is TableType.blink()
Expand Down Expand Up @@ -205,7 +205,7 @@ def consume_to_partitioned_table(
It can be the result of calling one of the functions: simple_spec(),avro_spec() or json_spec() in this
module, or the predefined KeyValueSpec.IGNORE or KeyValueSpec.FROM_PROPERTIES. The default is None which
works the same as KeyValueSpec.FROM_PROPERTIES, in which case, the kafka_config param should include values
for dictionary keys 'deephaven.key.column.name' and 'deephaven.key.column.type', for the single resulting
for dictionary keys 'deephaven.value.column.name' and 'deephaven.value.column.type', for the single resulting
column name and type
table_type (TableType): a TableType, specifying the type of the expected result's constituent tables,
default is TableType.blink()
Expand Down

0 comments on commit e53d6d5

Please sign in to comment.