Skip to content

Commit

Permalink
Fix typo in suppressing custom_tags missing message
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophRose authored Apr 21, 2020
1 parent 5aa76e8 commit 2fe01fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/python/python_component.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class ModelWithTags(object):
Prior to Seldon Core 1.1.0 not implementing custom tags logs a message at the info level at each predict call. Starting with Seldon Core 1.1.0 this is logged at the debug level. To supress this warning implement a tags function returning an empty dictionary:

```python
def metrics(self):
def tags(self):
return {}
```

Expand Down

0 comments on commit 2fe01fe

Please sign in to comment.