Skip to content
Merged
Show file tree
Hide file tree
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
Fixing Template
Signed-off-by: Elliot Scribner <elliot.scribner@couchbase.com>
  • Loading branch information
ejscribner committed Feb 27, 2025
commit 78d780ea28eb0aa967ec7be701be2d5216f8864c
2 changes: 1 addition & 1 deletion sdk/python/feast/templates/couchbase/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def bootstrap():

if click.confirm("Configure Couchbase Online Store?", default=True):
connection_string = click.prompt(
"Couchbase Connection String", default="couchbase://localhost"
"Couchbase Connection String", default="couchbase://127.0.0.1"
)
user = click.prompt("Couchbase Username", default="Administrator")
password = click.prompt("Couchbase Password", hide_input=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

driver_stats_source = CouchbaseColumnarSource(
name="driver_hourly_stats_source",
query="SELECT * FROM foo_database.bar_scope.`feast_driver_hourly_stats`",
database="foo_database",
scope="bar_scope",
query="SELECT * FROM Default.Default.`feast_driver_hourly_stats`",
database="Default",
scope="Default",
collection="feast_driver_hourly_stats",
timestamp_field="event_timestamp",
created_timestamp_column="created",
Expand Down