This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File.open(Rails.root.join("sftp_schedule_information_#{timestamp}.csv"), 'w') do |file| | |
file.write(to_csv_schedule(all_info)) | |
end | |
**** | |
all_info = set_info_schedules | |
** load below in rails console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#start up a resque-scheduler pod from command line in wa-devenv project | |
monster set --namespace={eco system name} | |
kubectl scale --replicas=1 deployment/wa-resque-scheduler | |
#after entering the wa-resque-scheduler pod thru ecomaster run: | |
PIDFILE=./resque-scheduler.pid BACKGROUND=yes bundle exec rake environment resque:scheduler | |
- OR - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "test_helper" | |
require "support/page_objects/webadmit_administrator" | |
describe Documents::DownloadableDocument do | |
let(:user_identity) { PageObjects::WebadmitAdministrator.new } | |
let(:downloader) { Documents::Downloader.name } | |
let(:downloadable_document) { Documents::DownloadableDocument.new(options) } | |
let(:filename) { "BroDawg.pdf" } | |
let(:md5_sum) { "f3e86ec5310eab180a8d884dd483f307" } | |
let(:options) do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** - branch https://github.com/Liaison-Intl/WebAdMIT/compare/feature/NF-53110...run-ci/feature/testing-sftp-swap | |
Gemfile | |
gem 'sidekiq-scheduler' | |
**** | |
Initializer Sidekiq | |
unless ENV['RUNNING_ASSETS_PRECOMPILE'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Running: | |
The redis deletion strategy's #url method is deprecated. It will be removed in database_cleaner-redis 2.0 in favor of #db. | |
.................................No route to host - connect(2) for [2607:f8b0:4006:820::2004]:22 | |
/Users/jeffreed/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/socket.rb:1214:in `__connect_nonblock' | |
/Users/jeffreed/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/socket.rb:1214:in `connect_nonblock' | |
/Users/jeffreed/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/socket.rb:56:in `connect_internal' | |
/Users/jeffreed/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/socket.rb:137:in `connect' | |
/Users/jeffreed/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/socket.rb:642:in `block in tcp' | |
/Users/jeffreed/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/socket.rb:227:in `each' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WARNING on line 548 of /Users/jeffreed/Liaison/WebAdMIT/app/assets/stylesheets/webadmit_main.sass: | |
This selector doesn't have any properties and will not be rendered. | |
WARNING on line 150 of /Users/jeffreed/Liaison/WebAdMIT/app/assets/stylesheets/_tables.sass: | |
This selector doesn't have any properties and will not be rendered. | |
WARNING on line 151 of /Users/jeffreed/Liaison/WebAdMIT/app/assets/stylesheets/_tables.sass: | |
This selector doesn't have any properties and will not be rendered. | |
WARNING on line 178 of /Users/jeffreed/Liaison/WebAdMIT/app/assets/stylesheets/_tables.sass: | |
This selector doesn't have any properties and will not be rendered. | |
The redis deletion strategy's #url method is deprecated. It will be removed in database_cleaner-redis 2.0 in favor of #db. | |
......unable to sign request without credentials set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it '#update_run_at' do | |
s1 = create :schedule, wanted_run_at: '2022-01-25 17:00', run_at: '2022-01-25 17:00', schedule_option: 'monthly' | |
s2 = create :schedule, wanted_run_at: '2022-01-29 17:00', run_at: '2022-01-29 17:00', schedule_option: 'monthly' | |
s3 = create :schedule, wanted_run_at: '2022-01-30 17:00', run_at: '2022-01-30 17:00', schedule_option: 'monthly' | |
s4 = create :schedule, wanted_run_at: '2022-01-31 17:00', run_at: '2022-01-31 17:00', schedule_option: 'monthly' | |
s5 = create :schedule, wanted_run_at: '2024-01-31 17:00', run_at: '2024-01-31 17:00', schedule_option: 'monthly' | |
s6 = create :schedule, wanted_run_at: '2024-01-30 17:00', run_at: '2024-01-30 17:00', schedule_option: 'monthly' | |
s7 = create :schedule, wanted_run_at: '2024-01-29 17:00', run_at: '2024-01-29 17:00', schedule_option: 'monthly' | |
s8 = create :schedule, wanted_run_at: '2024-01-28 17:00', run_at: '2024-01-28 17:00', schedule_option: 'monthly' | |
s9 = create :schedule, wanted_run_at: ' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'net/sftp' | |
require 'uri' | |
class SftpUploader | |
attr_reader :host, :username, :password, :ssh_private_key, :port, :auth_type, :root_path | |
def initialize(host, user, auth_type, port, password: nil, ssh_private_key: nil, root_path) | |
@host = host | |
@user = user | |
@port = port |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ScheduleNextRunAt | |
MONTHS = { "30" => [1,3,4,5,6,7,8,9,10,11,12], "31" => [1,3,5,7,8,10,12] }.freeze | |
def initialize(date, schedule_option, advance_to_date=nil) | |
@date = date | |
@schedule_option = schedule_option | |
@advance_to_date = advance_to_date | |
end | |
def next_run_date |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :releases do | |
namespace 'one_offs' do | |
desc 'fix-genders - CASPA22: Delete test applicants from WebAdMIT - CASPA Test Organization' | |
task 'fix-genders': :environment do |task| | |
include ReleaseTaskHelpers | |
display :notice, task.full_comment | |
unless if Rails.configuration.is_aamc | |
GENDERS = ["MAN", "WOMAN", "OTHER"] |