Skip to content

Commit

Permalink
Add query node
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardsegarra committed Apr 24, 2024
1 parent c635da5 commit 3756e6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from const import GithubHeaders, LOGGING_CONFIG
from github import GithubJob
from utils import dict_to_logfmt
from queryql import query_node

dictConfig(LOGGING_CONFIG)

Expand Down Expand Up @@ -67,7 +68,7 @@ def process_workflow_job():
if job.action == "queued":
# add to memory
jobs[job.id] = job
# query_node(job.node_id)
query_node(job.node_id)

elif job.action == "in_progress":
job_requested = jobs.get(job.id)
Expand Down

0 comments on commit 3756e6d

Please sign in to comment.