Re: Need help for my first Open Source Contribution.

2023-03-01 Thread Durval Carvalho
Hi Siddhiraj, Welcome to the open-source community! It's great to see you interested in contributing to Django. Here are some suggestions on how to get started: 1. Check out the Django Contributing Guide: https://docs.djangoproject.com/en/stable/internals/contributing/. This

Re: Need help on solving an issue

2022-09-07 Thread Carlton Gibson
Hi Arka. Welcome. Did you see the contributing guidelines? https://docs.djangoproject.com/en/4.1/internals/contributing/ Then make sure you're set up to run the unit tests: https://docs.djangoproject.com/en/4.1/internals/contributing/writing-code/unit-tests/ If you can create a test-case for the

Re: Need help in testing out the fix

2021-08-19 Thread No Offence
Thanks a lot, Adam. On Thursday, August 19, 2021 at 8:10:19 PM UTC+5:30 Adam Johnson wrote: > Hi > > You can use 'pip install --editable' with the path to your copy of the > django repo to test it in another virtualenv. > > Here's the option docs: > https://pip.pypa.io/en/stable/cli/pip_install

Re: Need help in testing out the fix

2021-08-19 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
Hi You can use 'pip install --editable' with the path to your copy of the django repo to test it in another virtualenv. Here's the option docs: https://pip.pypa.io/en/stable/cli/pip_install/#install-editable Here's a demo video: https://www.youtube.com/watch?v=gYYi7varbmE Thanks, Adam On Thu,

Re: Need help for django fix testing

2021-08-19 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
I'm responding to your other thread where you gave a little more information. Please be careful posting to the list in future ;) On Thu, 19 Aug 2021 at 07:17, No Offence wrote: > Hey there, I'm new in this contributing environment. I have fixed one > issue but now I don't know how to test it out

Re: Need Help

2021-03-01 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
Click the "GitHub Login" button at the top of the ticket tracker pages to create an account [image: Screenshot 2021-03-01 at 19.16.51.png] Do read the "first patch" tutorial: https://docs.djangoproject.com/en/dev/intro/contributing/ On Mon, 1 Mar 2021 at 18:54, Mhd Ali wrote: > Hello, this mu

Re: need help to get started

2018-10-28 Thread Tim Graham
Hi Harsh, please read https://docs.djangoproject.com/en/dev/internals/contributing/new-contributors/. On Sunday, October 28, 2018 at 9:42:07 AM UTC-4, Harsh Sahu wrote: > > Hello There! > This is Harsh. I'm pursuing master's degree in Computer Science. I'm a > intermediate python person and lear

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-12-16 Thread Tim Graham
The issue still happens. I may have found the cause. The MySQL data dir is stored on a tmpfs to speed things up and the disk usage there grows over time. It's possible that a 3GB tmpfs (it's 2GB on Ubuntu 14.04 machines) is too small and that if enough MySQL builds are running concurrently, it

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-06 Thread gilberto dos santos alves
great! 2016-08-05 19:19 GMT-03:00 Tim Graham : > I spun up a new machine and haven't seen this issue on it, so the problem > may have been either hardware related or something that was fixed with a > fresher install of Ubuntu 16.04. > > On Wednesday, August 3, 2016 at 11:07:54 AM UTC-4, gilberto

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-05 Thread Tim Graham
I spun up a new machine and haven't seen this issue on it, so the problem may have been either hardware related or something that was fixed with a fresher install of Ubuntu 16.04. On Wednesday, August 3, 2016 at 11:07:54 AM UTC-4, gilberto dos santos alves wrote: > > hummm! thanks. i will conti

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-03 Thread gilberto dos santos alves
hummm! thanks. i will continue search for more precise aswers and solutions. regards. 2016-08-02 17:27 GMT-03:00 Tim Graham : > I'm not sure exceeding max_connections is the issue. We have up to 8 > executors on each machine and the tests aren't running in parallel, so I > think we wouldn't have

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-03 Thread George-Cristian Bîrzan
Aside the obvious (hardware issues), which is I think unlikely if your datadir is on tmpfs, can you check the error logs for what queries were being executed when it crashes? -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Djan

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-02 Thread Erik Cederstrand
I think this is better directed at a MySQL list. MySQL shouldn't crash, nothing I see indicates that this is a Django issue. Of course, it's best if you can reproduce the error. Barring that, you'll get a much more useful stack trace if you build MySQL with debugging symbols. A quick look at th

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-02 Thread Tim Graham
I'm not sure exceeding max_connections is the issue. We have up to 8 executors on each machine and the tests aren't running in parallel, so I think we wouldn't have more than 8 connections unless running the tests can open more than 1 connection? Also, we don't expect 8 all executors to all be

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-02 Thread gilberto dos santos alves
hi. IMO vars for django may uses this values inside [MYSQLD], cause max_connections default is 100 innodb_buffer_pool_instances=8 max_connections=255 you could verify your environment using console command mysql -u your-user -p[your-password-whit-nospace] show variables like '%connec%'; show v

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-02 Thread Tim Graham
Here you are: [client] port= 3306 socket= /var/run/mysqld/mysqld.sock # Here is entries for some specific programs # The following values assume you have at least 32M ram # This was formally known as [safe_mysqld]. Both versions are currently parsed. [mysqld_safe] socket

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-08-01 Thread gilberto dos santos alves
hi. please post your /etc/my.ini (or your equiv. mysql ini config file). 2016-08-01 21:05 GMT-03:00 Tim Graham : > Sometimes the MySQL 5.7.13 builds on Ubuntu 16.04 are failing with "Lost > connection to MySQL server during query" because the MySQL server restarts > during the tests. I wonder if

Re: Need Help

2016-07-17 Thread Jeremy Spencer
There is a whole section on the django website about starting to contribute. -- Jeremy Spencer www.jeremyspencer.me www.linkedin.com/in/jeremylspencer www.facebook.com/jeremyspencerllc On July 17, 2016 at 4:28:55 PM, Rizwan anjum

Re: Need help w/ sql.where.WhereNode tree

2010-12-13 Thread Jonas H.
On 12/03/2010 03:06 PM, Jonas H. wrote: On 12/03/2010 10:04 AM, Waldemar Kornewald wrote: You probably don't want to use those aliases. Instead, you should use a separate alias namespace for embedded object filters. Otherwise you'll have to deal with the complex JOIN code in the backend unnecess

Re: Need help w/ sql.where.WhereNode tree

2010-12-03 Thread Jonas H.
On 12/03/2010 10:04 AM, Waldemar Kornewald wrote: You probably don't want to use those aliases. Instead, you should use a separate alias namespace for embedded object filters. Otherwise you'll have to deal with the complex JOIN code in the backend unnecessary. Aliases for embedded objects could j

Re: Need help w/ sql.where.WhereNode tree

2010-12-03 Thread Waldemar Kornewald
On Thu, Dec 2, 2010 at 5:03 PM, Jonas H. wrote: > On 12/01/2010 08:04 AM, Waldemar Kornewald wrote: >> >> In the end JOINs will be a rather complicated solution. I thought >> that's why you wanted to extend the ORM directly to handle embedded >> fields in a special way. That should be easier and c

Re: Need help w/ sql.where.WhereNode tree

2010-12-02 Thread Jonas H.
On 12/01/2010 08:04 AM, Waldemar Kornewald wrote: In the end JOINs will be a rather complicated solution. I thought that's why you wanted to extend the ORM directly to handle embedded fields in a special way. That should be easier and cleaner. That's what I'm up to, but I have to know how to re

Re: Need help w/ sql.where.WhereNode tree

2010-11-30 Thread Waldemar Kornewald
On Nov 30, 9:34 pm, "Jonas H." wrote: > Hello List! > > I'm working on queries on embedded objects for Django-nonrel (more > precisely, djangotoolbox) that will use JOIN-like syntax. > > For this, I need to know how to distinguish >    .filter(spam__op=eggs, foo__op=bar) > from >    .filter(spam__

Re: Need help w/ sql.where.WhereNode tree

2010-11-30 Thread Russell Keith-Magee
On Wed, Dec 1, 2010 at 4:34 AM, Jonas H. wrote: > Hello List! > > I'm working on queries on embedded objects for Django-nonrel (more > precisely, djangotoolbox) that will use JOIN-like syntax. > > For this, I need to know how to distinguish >  .filter(spam__op=eggs, foo__op=bar) > from >  .filter(

Re: Need help with my SoC proposal.

2010-03-22 Thread Fırat Can Başarır
I decided to put the message itself here so you won't have to follow the link to another mailing list. Hello, I am a CS student from Turkey. I want to apply for Django's GSoC program this year. I have some ideas but am quite confused regarding what to propose. I want to give some information abou