Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Webhook storage (fixes #2835) #3000

Merged
merged 21 commits into from
Aug 4, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove deepcopy
  • Loading branch information
jameslamb committed Aug 4, 2020
commit 921e387d26e624b248de962e3fda9b5a54f1db91
2 changes: 0 additions & 2 deletions src/prefect/environments/storage/webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import warnings

from collections.abc import Mapping
from copy import deepcopy
from typing import TYPE_CHECKING, Any, Dict, Iterator, List, Optional

from requests import Session
Expand Down Expand Up @@ -78,7 +77,6 @@ def _render_dict(input_dict: Dict[str, Any]) -> Dict[str, Any]:
- RuntimeError if any template value cannot be found in the environment
or `prefect` secrets
"""
input_dict = deepcopy(input_dict)
output_dict = {}

for key, value in input_dict.items():
Expand Down