rake db tasks 运行 两次

rake db tasks running twice

当我发现种子文件有问题时,我正在用来自 Faker 的几千条记录为开发 postgres 数据库播种。我中止了种子操作并回滚了插入并修复了 seeds.rb 文件。

当我再次去 运行 时,每个 rake db:* 任务 运行s 两次。我可以 运行 rake routes 就好了,但是如果我 运行 rake db:drop 我会得到这样的东西:

$ rake db:drop
Dropped database 'vp_development'
Dropped database 'vp_development'

如果我尝试 运行 迁移,当它尝试应用索引时,整个事情就会崩溃,因为它已经创建了那些列。

我只有一个默认的 Rakefile,在 lib 或其他任何地方都没有自定义的 rake 文件。

环境是 rails 5.0.0.1 和 ruby 2.2.2 如果这有什么区别的话。我现在很迷茫。

这是我的 Rakefile

# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require_relative 'config/application'

Rails.application.load_tas

我看到其他线程暗示 gem 可能有问题,但在出现此问题的几天内我没有添加新的 gem。无论如何,这是 gem 文件。

source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'devise'
gem 'bootstrap-sass', '3.3.6'
gem 'pg'
gem 'friendly_id'
gem 'will_paginate'
gem 'faker'

group :development, :test do
  #gem 'sqlite3'
  gem 'byebug', platform: :mri
end

group :development do
  gem 'web-console'
  gem 'listen', '~> 3.0.5'
  gem 'spring'
  gem 'spring-watcher-listen', '~> 2.0.0'
end

group :production do
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

编辑: 我还在 db 命名空间中尝试了一个自定义任务,它工作正常。只有 运行 一次。据我所知,db:drop、db:create、db:reset、db:migrate 是唯一 运行ning 两次的任务。这是 db:drop 上的跟踪和 db:create.

上的跟踪
 $ rake db:drop --trace
** Invoke db:drop (first_time)
** Invoke db:load_config (first_time)
** Execute db:load_config
** Invoke db:check_protected_environments (first_time)
** Invoke environment (first_time)
** Execute environment
** Invoke db:load_config 
** Execute db:check_protected_environments
** Execute db:drop
** Invoke db:drop:_unsafe (first_time)
** Invoke db:load_config 
** Execute db:drop:_unsafe
Dropped database 'vp_development'
Dropped database 'vp_development'

rake db:create --trace
** Invoke db:create (first_time)
** Invoke db:load_config (first_time)
** Execute db:load_config
** Execute db:create
Created database 'vp_development'
Database 'vp_development' already exists

我找到了罪魁祸首。在最近几次 git 提交中的某处,我的 database.yml 不知何故被复制了。

每次我尝试 运行 任何引用环境的 rake 命令时,它都会 运行 两次。这么奇怪的问题。很高兴我能够解决它。