Displaying 2 results from an estimated 2 matches for "primaryaccount".
Did you mean:
primary_accounts
2008 Jul 16
2
belongs_to causing endless loop on first call to save!
...I end up in an endless validation loop.
Funny thing is, when I was incrementally saving the data, this issue never
arose--another way to put it, those relationships never caused a problem
when saving/retrieving already-existing rows.
In the model tier, I have the following classes defined:
class PrimaryAccount < Account
has_many :payment_methods, :foreign_key => "account_id" #using single
table inheritance, which is why foreign key is not "primary_account_id"
belongs_to :current_payment_method, :class_name => "PaymentMethod",
:foreign_key => "current_pay...
2024 Mar 28
3
Compounding global and individual settings in ssh-config files?
...ery new
machine and configure it on their own. Since it's a case of "let's get
started now, and properly think it through later", right now, a typical
entry might look like
> Host [product]-[Customer]
> Hostname [privateIP]
> user [primaryAccount]
> ProxyCommand nc -x 127.0.0.1:2124 -X 5 %h %p
(with the parts in [] varying from one machine to the next) - and if you
know how disparate the options of "nc"/netcat can look from one distrib
to the next, you'll immediately know why this suggestion has me
concerned. :-...