Skip to content

Commit

Permalink
Memory store driver is now default
Browse files Browse the repository at this point in the history
  • Loading branch information
ecanuto committed Aug 14, 2020
1 parent 1b81c94 commit 8b48c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/store/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func New() *Store {
// Get storage driver or use firestore as default.
name := os.Getenv("STORAGE_DRIVER")
if name == "" {
name = "firestore"
name = "memory"
}
log.Printf("Storage driver: %s", name)

Expand Down

0 comments on commit 8b48c73

Please sign in to comment.