Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ab245e9
add py.typed marker
tpvasconcelos Mar 14, 2022
e1578db
add py.typed to MANIFEST.in
tpvasconcelos Mar 14, 2022
e99e8b5
ignore mypy error from generated protos modules
tpvasconcelos Mar 14, 2022
1bdbe78
revert: ignore mypy error from generated protos modules
tpvasconcelos Mar 16, 2022
64de086
reorder imports
achals Mar 22, 2022
29d5272
sort imports
tpvasconcelos Mar 22, 2022
e47a32b
sort imports
tpvasconcelos Mar 22, 2022
99783f2
feat: Allow using entity's join_key in get_online_features (#2420)
pyalex Mar 21, 2022
adfe754
fix!: GetOnlineFeatureResponse in Python feature server should be con…
pyalex Mar 21, 2022
74f1e04
chore: Adding documentation on community calendar + newsletter + upda…
adchia Mar 21, 2022
b6d6afc
feat: Graduate write_to_online_store out of experimental status (#2426)
achals Mar 21, 2022
2679658
refactor!: Remove deprecated parameters from Entity and FeatureView (…
felixwang9817 Mar 21, 2022
2bfc6bb
ci: Modify release script to only do minor release for breaking chang…
felixwang9817 Mar 21, 2022
022cca1
fix: Ensure that __init__ files exist in proto dirs (#2433)
achals Mar 22, 2022
8861213
feat: Allow using entity's join_key in get_online_features (#2420)
pyalex Mar 21, 2022
aa74ee2
fix!: GetOnlineFeatureResponse in Python feature server should be con…
pyalex Mar 21, 2022
a2f4c3b
chore: Adding documentation on community calendar + newsletter + upda…
adchia Mar 21, 2022
8be62c9
feat: Graduate write_to_online_store out of experimental status (#2426)
achals Mar 21, 2022
cde237a
refactor!: Remove deprecated parameters from Entity and FeatureView (…
felixwang9817 Mar 21, 2022
849c1cb
ci: Modify release script to only do minor release for breaking chang…
felixwang9817 Mar 21, 2022
6c36f69
fix: Ensure that __init__ files exist in proto dirs (#2433)
achals Mar 22, 2022
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
reorder imports
Signed-off-by: Achal Shah <achals@gmail.com>
Signed-off-by: Tomas Pereira de Vasconcelos <tomasvasconcelos1@gmail.com>
  • Loading branch information
achals authored and tpvasconcelos committed Mar 22, 2022
commit 64de0866d1de2ea970d802af585342633a3eddaa
2 changes: 1 addition & 1 deletion sdk/python/feast/go_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
from subprocess import Popen
from typing import Any, Dict, List, Optional, Union

import grpc
from tenacity import retry, stop_after_attempt, stop_after_delay, wait_exponential

import feast
import grpc
from feast.errors import FeatureNameCollisionError, InvalidFeaturesParameterType
from feast.feature_service import FeatureService
from feast.flags_helper import is_test
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/transformation_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
import sys
from concurrent import futures

import grpc
import pyarrow as pa
from grpc_reflection.v1alpha import reflection

import grpc
from feast.errors import OnDemandFeatureViewNotFoundException
from feast.feature_store import FeatureStore
from feast.protos.feast.serving.TransformationService_pb2 import (
Expand Down