Skip to content

Commit

Permalink
Increase timeout to 180 secs
Browse files Browse the repository at this point in the history
  • Loading branch information
nonibansal authored and nikhilgarg28 committed Jul 22, 2024
1 parent 2675afc commit e98d14d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions fennel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [1.4.4] - 2024-07-19
- Increase default timeout to 180 seconds.

## [1.4.3] - 2024-07-19
- Add more schema validations for select operator.

Expand Down
2 changes: 1 addition & 1 deletion fennel/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# a multiple of 3 (this is the default TCP retransmission window)
_DEFAULT_CONNECT_TIMEOUT = 10
# Default request timeout(s).
_DEFAULT_TIMEOUT = 30
_DEFAULT_TIMEOUT = 180
# Name of the default branch
_MAIN_BRANCH = "main"
_BRANCH_HEADER_NAME = "X-FENNEL-BRANCH"
Expand Down
3 changes: 2 additions & 1 deletion fennel/datasets/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,8 @@ def __init__(
self.node.out_edges.append(self)

def signature(self):
return fhash(self.node.signature(), self.columns)
# Doing this to make signature same as previous one.
return fhash(self.node.signature(), self.drop_columns)

def dsschema(self):
input_schema = copy.deepcopy(self.node.dsschema())
Expand Down
2 changes: 1 addition & 1 deletion fennel/datasets/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -2001,7 +2001,7 @@ def from_a(cls, a: Dataset):
"dropcols": ["a3", "a4"],
"operandId": "10340ca369826992acc29dc84b073c18",
},
"id": "9a49f6b30e963d0b36f1dcb85e308b50",
"id": "0d52839b6fb94cde94dea24334ad9bce",
"isRoot": True,
"pipelineName": "from_a",
"ds_version": 1,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fennel-ai"
version = "1.4.3"
version = "1.4.4"
description = "The modern realtime feature engineering platform"
authors = ["Fennel AI <developers@fennel.ai>"]
packages = [{ include = "fennel" }]
Expand Down

0 comments on commit e98d14d

Please sign in to comment.