Skip to content

Commit

Permalink
feat: turn scraping back on for nominal data sources (#181)
Browse files Browse the repository at this point in the history
* commit

* quick fix

* imports fix
  • Loading branch information
ritwikdixit authored Jan 7, 2025
1 parent 3e659f5 commit 855018d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nominal/core/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ def create_streaming_connection(
),
required_tag_names=required_tag_names or [],
available_tag_values={},
should_scrape=False,
should_scrape=True,
),
)
return Connection._from_conjure(self._clients, connection_response)
Expand Down
2 changes: 1 addition & 1 deletion nominal/core/data_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from time import sleep
from typing import Protocol, Sequence

from nominal_api import scout, scout_checks_api, scout_datareview_api, scout_integrations_api
from typing_extensions import Self

from nominal._api.scout_service_api import scout, scout_checks_api, scout_datareview_api, scout_integrations_api
from nominal.core import checklist
from nominal.core._clientsbunch import HasAuthHeader
from nominal.core._utils import HasRid
Expand Down

0 comments on commit 855018d

Please sign in to comment.