Skip to content

Commit

Permalink
added preserve_index=False to client code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rick Spencer committed Sep 2, 2024
1 parent ad73ea8 commit b7545fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shoots/shoots_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def put(self,
"batch_size":req.batch_size}).encode()

descriptor = FlightDescriptor.for_command(command_info)
table = pa.Table.from_pandas(req.dataframe)
table = pa.Table.from_pandas(req.dataframe, preserve_index=False)

try:
writer, _ = self.client.do_put(descriptor, table.schema)
Expand Down

0 comments on commit b7545fb

Please sign in to comment.