This file contains hidden or 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
When | |
18 hours ago | |
Message PG::QueryCanceled: ERROR: canceling statement due to statement timeout | |
File /gems/activerecord-7.1.5.1/lib/active_record/connection_adapters/postgresql_adapter.rb:894 | |
Remote address 34.196.218.171 United States | |
Backtrace | |
Show code hunks | |
/gems/activerecord-7.1.5.1/lib/active_record/connection_adapters/postgresql_adapter.rb:894 in exec_params | |
/gems/activerecord-7.1.5.1/lib/active_record/connection_adapters/postgresql_adapter.rb:894 in block (2 levels) in exec_no_cache |
This file contains hidden or 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
# sign on to wa-field-manager pod to pull json | |
# you will need usernamne and password for eco use | |
curl -H "Content-Type: application/json" -u username:password http://wa-field-manager-web-svc/api/v1/master/field_data.json > fm.json | |
# from you local transfer files to local then to wa-app pod | |
# copy to local from eco - cp {eco name}/{pod name}:/path to file | |
kubectl cp wa-only-fm/wa-field-manager-web-7949cbf9c-vgmhx:/opt/app/fm.json fm.json | |
# copy to eco wa-app pod - cp {eco name}/{pod name}:/path to file dropoff | |
kubectl cp fm.json wa-only-fm/wa-app-695db457bd-q9ftt:/opt/app/fm.json |
This file contains hidden or 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
bash: cannot set terminal process group (-1): Inappropriate ioctl for device | |
bash: no job control in this shell | |
Welcome to namespace 'abhi-tech-approach' | |
rake aborted! | |
Psych::SyntaxError: (<unknown>): did not find expected key while parsing a block mapping at line 1 column 1 | |
/opt/app/config/application.rb:117:in `<class:Application>' | |
/opt/app/config/application.rb:31:in `<module:Webadmit>' | |
/opt/app/config/application.rb:30:in `<top (required)>' | |
/opt/app/Rakefile:6:in `require' | |
/opt/app/Rakefile:6:in `<top (required)>' |
This file contains hidden or 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
Defaulted container "wa-app" out of: wa-app, init-sysctl (init), init (init) | |
bash: cannot set terminal process group (-1): Inappropriate ioctl for device | |
bash: no job control in this shell | |
Welcome to namespace 'nf-68387-offepic' | |
rake aborted! | |
Psych::SyntaxError: (<unknown>): did not find expected key while parsing a block mapping at line 1 column 1 | |
/opt/app/config/application.rb:110:in `<class:Application>' | |
/opt/app/config/application.rb:30:in `<module:Webadmit>' | |
/opt/app/config/application.rb:29:in `<top (required)>' | |
/opt/app/Rakefile:6:in `require' |
This file contains hidden or 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
diff --git a/config/lookup_definitions.tjcas.yml b/config/lookup_definitions.tjcas.yml | |
index c113cee4..8d45925f 100644 | |
--- a/config/lookup_definitions.tjcas.yml | |
+++ b/config/lookup_definitions.tjcas.yml | |
@@ -117,15 +117,26 @@ | |
:conditions: | |
:type: 'GlobalLookups::TranscriptType' | |
:cas_specific: false | |
+- colleges_medical_school: | |
+ :table_name: college_bases |
This file contains hidden or 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
diff --git a/app/controllers/residency_users_controller.rb b/app/controllers/residency_users_controller.rb | |
index 78151dc49c..10da48ac24 100644 | |
--- a/app/controllers/residency_users_controller.rb | |
+++ b/app/controllers/residency_users_controller.rb | |
@@ -12,7 +12,7 @@ class ResidencyUsersController < ApplicationController | |
def new | |
@user = User.new | |
@user_identity = @user.residency_user_identities.build | |
- @colleges = Association.where(name: 'ResidencyCAS').order(id: :desc).first.colleges | |
+ @colleges = Association.where(name: 'ResidencyCAS').order(id: :desc).first.medical_schools |
This file contains hidden or 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
irb(main):042:0> ea.map(&:string_value) | |
=> | |
["NF-66919 Testing\n\n \n\nWebAdMIT must honor/display page breaks or carriage returns in long-form question answers\n\n \n\nAnd right now we are going to test it.\n\n Let`s see if it works as expected.\n\n Works?\n\n \n\n \n\nGREAT!!!", | |
"NF-66919 Testing\n\n \n\nWebAdMIT must honor/display page breaks or carriage returns in long-form question answers\n\n \n\nAnd right now we are going to test it.\n\n Let`s see if it works as expected.\n\n Works?\n\n \n\n \n\nGREAT!!!", | |
"NF-66919 Testing\n\n \n\nWebAdMIT must honor/display page breaks or carriage returns in long-form question answers\n\n \n\nAnd right now we are going to test it.\n\n Let`s see if it works as expected.\n\n Works?\n\n \n\n \n\nGREAT!!!", | |
"NF-66919 Testing\n\n \n\nWebAdMIT must ho |
This file contains hidden or 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 Admin::AssociationsController < Admin::BaseController | |
def index | |
Association.transaction do | |
@search_manager = SearchManagers::CasSearchManager.new(current_user_identity, params) | |
@associations = @search_manager.search | |
@counts = { | |
institutions: institutions_for_acceptable_associations_count, | |
organizations: organizations_for_acceptable_associations_count, | |
programs: programs_for_acceptable_associations_count, |
This file contains hidden or 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 :after_party do | |
desc 'Deployment task: unassign_applicants' | |
task :wa_6877, [:group] => [:environment] do |_task, args| | |
next if args[:group] != 'before_load' # available before_migrate|before_load|after_load | |
include ReleaseTaskHelpers | |
puts "Running deploy task 'wa_6877'" | |
# if Rails.env.production? | |
display :info, "wa_6877 Starting task..." |
NewerOlder