Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
And git too probably because the commit message is shit and the commits are probably not necessary
-
@Codex404 the commits are indeed necessary, cause we use aws codepipeline, so the only way for me to test something is to commit it and push it to the repository =/
-
C0D4681466yAre you seriously not testing this query in a local db before pushing to aws?
Talk about testing in prod 😟 -
I can relate to this a little, testing the pipeline that fails in Bitbucket but works locally.
-
vocuzi82576yUpdate query
Update query new
Update query new new
Update query final
Update query final most -
C0D4681466y@iamavalos i work in 3 environments
Local, staging and production
Staging and production are both in AWS.
No query is ran directly against production without first giving expected results in the first two environments. EVER!
Yes it’s hard to get the data you need across all dbs, but then the local and staging dbs aren’t hard to generate semi valid data for, or if you must... do a mysql dump from production and load it up locally to test against.
As for prod only environments, I do have a handful of projects that come under that, which I jump in and create temp tables of existing data and test against that, then delete the temp tables execute the queries against the real ones when satisfied it works.
There’s always a way to test things.
Related Rants
I HATE MYSQL !
rant
git
js
mysql
commit