File tree 2 files changed +4
-1
lines changed
Filter options
2 files changed +4
-1
lines changed
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
14
14
### Changed
15
15
- Update test suite to add support for Python 3.7 and InfluxDB v1.6.4 and 1.7.4 (#692 thx @clslgrnc )
16
16
- Update classifiers tuple to list in setup.py (#697 thx @Hanaasagi )
17
+ - Update documentation for empty ` delete_series ` confusion
17
18
18
19
### Removed
19
20
Original file line number Diff line number Diff line change @@ -827,7 +827,9 @@ def set_user_password(self, username, password):
827
827
def delete_series (self , database = None , measurement = None , tags = None ):
828
828
"""Delete series from a database.
829
829
830
- Series can be filtered by measurement and tags.
830
+ Series must be filtered by either measurement and tags.
831
+ This method cannot be used to delete all series, use
832
+ `drop_database` instead.
831
833
832
834
:param database: the database from which the series should be
833
835
deleted, defaults to client's current database
You can’t perform that action at this time.
0 commit comments