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
Next Next commit
merge master
  • Loading branch information
jameslamb committed Jul 28, 2020
commit 3646336bc015dec0d639000a7580c3e21e8a9b41
20 changes: 11 additions & 9 deletions src/prefect/agent/local/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,17 @@ def __init__(
if hostname_label and (hostname not in self.labels):
assert isinstance(self.labels, list)
self.labels.append(hostname)
self.labels.extend(
[
"azure-flow-storage",
"gcs-flow-storage",
"s3-flow-storage",
"github-flow-storage",
"webhook-flow-storage",
]
)

all_storage_labels = [
"azure-flow-storage",
"gcs-flow-storage",
"s3-flow-storage",
"github-flow-storage",
"webhook-flow-storage",
]
for label in all_storage_labels:
if label not in self.labels:
self.labels.append(label)

self.logger.debug(f"Import paths: {self.import_paths}")
self.logger.debug(f"Show flow logs: {self.show_flow_logs}")
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.