jtiai: checkSpace.sh: The container needs at least 15 GB, but only 8 GB are available.
I don't even
apollo13 comments out that check
RCStef has quit
greg_f joined the channel
eperzhand has quit
eperzhand joined the channel
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2018-09-28_03-15-33PM. Please wait ...[FATAL] [INS-32021] Installer has detected that the available disk space on the volume for Oracle home (/opt/oracle/product/12.2.0.1/dbhome_1) is insufficient.
seriously, …
apache_danse joined the channel
jtiai
yep. it requires quite a much of diskspace...
apache_danse
I have about 50 URLFields to change in a models.py file to increase max_length to 250. Is there a better way to go about that besides using a reg-ex or such to change all of them to add the kwarg max_length=250?
sandeepK has quit
jessamynsmith joined the channel
jtiai has quit
xcm joined the channel
I suppose I could do something like class BiggerURLField(URLField) but I get the feeling that is a bad idea due to Django has some built-in things to handle URLField.
eperzhand has quit
tdy joined the channel
moldy
i would just change max_length
but a subclass should work fine as well, if you write it properly
tdy has quit
maryo joined the channel
greg_f joined the channel
vmonteco joined the channel
bkeating has quit
vmonteco
Hello!
xcm joined the channel
bkeating joined the channel
matsaman joined the channel
chasonchaffin has quit
mikeliss joined the channel
I have an updateview with the following MRO : (LoginRequiredMixin, UserPassesTestMixin, DeleteView). I just have the minimum (model, template_name, context_object_name and generic ModelForm as form_class) and a test_func() method. According to pdb, my test_func() returns True, yet the user I log with in my unit tests gets redirected to login page. What could case this?
now i would like to ask here for help with static files, maybe someone help me: I have set my static files like the following https://0bin.net/paste/jfGw+4i50pwsE1Nd#5WaqlD5..., and main.js + main.css are also in the STATIC_ROOT folder. But still, they cant be served
jaddison has quit
graphene has quit
graphene joined the channel
robotme has quit
oxygene joined the channel
Haudegen has quit
ok now I see, I ned to set also STATICFILES_DIRS = [os.path.join(BASE_DIR, "static")]. Does that mean, STATIC_ROOT is just and only for collectstatic to put the files there?
maks25 joined the channel
robotme joined the channel
darkhanb joined the channel
mikeliss has quit
bkeating has quit
mikeliss joined the channel
sunil_bansal joined the channel
Dunedan joined the channel
mikeliss has quit
robotme has quit
mikeliss joined the channel
searchingfortao has quit
moldy
apache_danse: do you need deconstruct()?
aalmazan joined the channel
apache_danse
moldy: I'm not sure, I assumed I needed it because i'm changing the arguments passed in __init__(). Was I wrong in that assumption?