- Package Name: azure-cosmos
- Package Version: 4.0.0
- Operating System: Linux
- Python Version: 3.5.3
Describe the bug
query_items_change_feed fucntion return the same result with the parameter is_start_from_beginning=True and False
To Reproduce
Steps to reproduce the behavior:
python -m venv venv
source venv/bin/activate
pip install azure-cosmos==4.0.0
Query
client = cosmos_client.CosmosClient(HOST, {'masterKey': MASTER_KEY})
container = client.get_database_client(DATABASE_ID).get_container_client(CONTAINER_ID)
container.query_items_change_feed(is_start_from_beginning=True)
# with is_start_from_beginning=false
container.query_items_change_feed()
Expected behavior
Read the change feed from the last checkpoint, tried with the parameter continunation, did not find the sample to fetch the continunation token.
Describe the bug
query_items_change_feed fucntion return the same result with the parameter is_start_from_beginning=True and False
To Reproduce
Steps to reproduce the behavior:
Query
Expected behavior
Read the change feed from the last checkpoint, tried with the parameter continunation, did not find the sample to fetch the continunation token.