Skip to content

Commit

Permalink
Fix a name of an attribute in docs (#3125)
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-v committed Sep 14, 2023
1 parent da69d4f commit a3e94f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes/connection-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ After connecting to the origin, the connection can be checked to see if `is_veri
```python
if not conn.is_verified:
# There isn't a verified TLS connection to target origin.
if not conn.is_proxy_verified:
if not conn.proxy_is_verified:
# There isn't a verified TLS connection to proxy origin.
```

Expand Down

0 comments on commit a3e94f2

Please sign in to comment.