Time |
Nick |
Message |
01:36 |
|
markus118928 joined #evergreen |
02:11 |
|
mati7526 joined #evergreen |
04:07 |
|
paf319 joined #evergreen |
05:41 |
|
plasmid joined #evergreen |
06:33 |
|
dbwells_ joined #evergreen |
06:53 |
|
remingtron joined #evergreen |
06:54 |
|
remingtron joined #evergreen |
07:06 |
|
agoben joined #evergreen |
07:07 |
|
rjackson22 joined #evergreen |
07:12 |
|
JBoyer joined #evergreen |
07:12 |
|
chuckx22 joined #evergreen |
07:28 |
|
bdljohn joined #evergreen |
07:49 |
|
darsie joined #evergreen |
08:18 |
|
bos20k joined #evergreen |
08:37 |
|
Dyrcona joined #evergreen |
08:46 |
|
mmorgan joined #evergreen |
08:48 |
|
dwhacksX220 joined #evergreen |
08:50 |
|
schinken22 joined #evergreen |
09:08 |
|
bdljohn joined #evergreen |
09:11 |
|
rlefaive joined #evergreen |
09:11 |
|
bos20k joined #evergreen |
09:22 |
|
collum joined #evergreen |
09:24 |
|
kmlussier joined #evergreen |
09:30 |
|
jvwoolf joined #evergreen |
09:33 |
|
yboston joined #evergreen |
09:41 |
|
terran joined #evergreen |
09:41 |
|
Skainet joined #evergreen |
09:41 |
terran |
bugsquashers++ https://wiki.evergreen-ils.org/doku.php?id=dev:bug_squashing:2018-09 |
09:49 |
kmlussier |
terran++ # Wrangling! |
09:49 |
mmorgan |
terran++ |
09:49 |
* kmlussier |
got her name on the spreadsheet in the 11th hour. :) |
09:51 |
Dyrcona |
Every week should be bug squashing week! :) |
09:51 |
berick |
terran++ |
09:53 |
terran |
Full spreadsheet: https://docs.google.com/spreadsheets/d/1mDoSEY_f7JYNyn-sjYwOhB9L8Us4J0Nz_FDcCMf6DQA/edit?usp=sharing |
09:56 |
abneiman |
terran++ # She Who Wrangles the Wranglers :) |
09:58 |
Dyrcona |
terran++ |
10:02 |
|
mmorgan joined #evergreen |
10:13 |
|
rlefaive_ joined #evergreen |
10:17 |
JBoyer |
terran++ |
10:18 |
* JBoyer |
almost feels like he snuck in to the stats. Not a good week for accomplishing things. :/ |
10:18 |
collum |
terran++ |
10:19 |
|
Sabaku29 joined #evergreen |
10:20 |
terran |
JBoyer: Every little bit helps! I didnt |
10:20 |
terran |
have as much time as I'd hoped to participate either |
10:23 |
rhamby_ |
JBoyer: I think many of us feel that way. |
10:24 |
|
rlefaive joined #evergreen |
10:25 |
berick |
i think going forward we need more down time between cutting the beta and bug squashing. 2 solid weeks of EG hustling is not always an option. |
10:25 |
berick |
made sense at the time, though |
10:26 |
JBoyer |
I don't think things went poorly overall this time, but I can see where this schedule wouldn't always work. |
10:28 |
miker |
I had a lot less time than I wanted, too... |
10:28 |
miker |
but that's not the schedule's fault, that's simply lack of tuits |
10:29 |
|
rlefaive joined #evergreen |
10:30 |
|
khuckins_ joined #evergreen |
10:35 |
|
mmorgan1 joined #evergreen |
10:39 |
|
bos20k joined #evergreen |
10:51 |
|
rlefaive joined #evergreen |
10:51 |
|
bdljohn1 joined #evergreen |
10:57 |
|
rlefaive joined #evergreen |
10:59 |
|
plux joined #evergreen |
11:16 |
|
rlefaive joined #evergreen |
11:23 |
|
terran joined #evergreen |
11:50 |
|
rlefaive_ joined #evergreen |
11:52 |
|
yboston joined #evergreen |
11:54 |
|
Jaswinder joined #evergreen |
11:55 |
kmlussier |
miker++ for bug 1781480 |
11:55 |
pinesol |
Launchpad bug 1781480 in Evergreen "Activity metric data isn't always retrieved as expected for searches" [Medium,Confirmed] https://launchpad.net/bugs/1781480 |
11:56 |
Jaswinder |
Hi Guys, It has been while I joined this chat room. I have a question on api request timeout settings. I have an api request timing out and I get the message: "No request was received in 6 seconds, exiting stateful session". How do I increase this setting? Is that inside opensrf.xml? |
11:59 |
miker |
Jaswinder: that log message says that the /client/ did not make a request of the connected /server/ within 6 seconds. do you need a stateful session there, for instance because you're using a transaction to records multiple, dependent inserts or updates? |
11:59 |
miker |
if you don't need a transaction, just don't use a stateful session |
11:59 |
|
jillr18 joined #evergreen |
12:00 |
Jaswinder |
miker: I am calling EbookAPI to send http request. So, I am not sure how do I switch from that connection. Is there a way to increase this number? |
12:00 |
miker |
IOW, you've created a stateful session, made at least one request, and then gone and done something else... the server tries to protect itself from clients that connect and then go away by only waiting for another request for so long |
12:01 |
miker |
Jaswinder: that's not what that log message is about |
12:01 |
Jaswinder |
before this log, I have this message: open-ils.ebook_api [INFO:2410:HTTPClient.pm:93:153719618925542] HTTPClient: sending HTTP POST request to |
12:02 |
miker |
that log message is not about the client waiting more than 6 seconds (and, btw, the default is 60s, IIRC), it's about some other server session waiting to be used, but not being used, within 6 seconds |
12:02 |
Jaswinder |
hmm, let me cross check on this. |
12:04 |
miker |
you probably have a cstore editor in xact mode. if you don't need to actually perform a transaction, it's better to not use xact=>1 when creating the cstore editor |
12:05 |
miker |
or, disconnect the editor before some other long-running operation, like making an http request that might take a while (or block indefinitely... which you should try to protect against) |
12:06 |
|
jillr18 was kicked by jeff: spam |
12:09 |
|
yboston joined #evergreen |
12:13 |
|
jihpringle joined #evergreen |
12:34 |
|
khuckins__ joined #evergreen |
13:10 |
|
bdljohn joined #evergreen |
13:14 |
jeffdavis |
Is actor.set_passwd the correct way to reset a user password in the db? |
13:15 |
jeffdavis |
I just tried it and I can't login with the password I used, just want to make sure I'm not missing something obvious |
13:15 |
berick |
jeffdavis: extra steps involved |
13:15 |
berick |
to add the m5d layers |
13:15 |
berick |
md5 |
13:16 |
berick |
Dyrcona had a handy sql function for that... |
13:16 |
Dyrcona |
jeffdavis: https://pastebin.com/YTLh7pC9 |
13:17 |
berick |
Dyrcona++ |
13:17 |
jeffdavis |
Dyrcona++ berick++ |
13:21 |
jeff |
Dyrcona++ berick++ pastebin-- |
13:21 |
Dyrcona |
?? |
13:23 |
jeff |
noting annoyance at pastebin for the 4 MB worth of ads and javascript to slowly show me 401 KB of SQL. |
13:23 |
Dyrcona |
Oh. :) |
13:24 |
* Dyrcona |
uses an ad blocker and has a Pro account, so I don't see the ads. |
13:24 |
|
sandbergja joined #evergreen |
13:24 |
* berick |
thinks jeff needs a doubleclick.net tattoo |
13:25 |
Dyrcona |
heh |
13:25 |
Dyrcona |
I just never think about ads much any more. |
13:31 |
* Dyrcona |
wonders why he gets a rebase conflict on in a file he doesn't remember having touched. |
13:32 |
Dyrcona |
Oh... Helps if you specify the remote branch correctly. |
13:32 |
Dyrcona |
:) |
15:02 |
|
khuckins__ joined #evergreen |
15:02 |
|
rlefaive joined #evergreen |
15:55 |
|
rlefaive joined #evergreen |
15:59 |
jihpringle |
Anyone around have anything to do with the EG twitter account? It's put out a call for proposals for the 2011 conference - https://twitter.com/EvergreenILS/status/1041761468885086208 |
16:00 |
rhamby_ |
jihpringle: I assume that shouldn't be there? |
16:00 |
jihpringle |
that's my guess |
16:01 |
abneiman |
berick: is RC still a go for Wednesday? |
16:01 |
rhamby_ |
ah, 2011? My guess is someone was editing something on the web site and triggered the "tweet it out" event |
16:02 |
rhamby_ |
holy moly that's not the only one jhpringle there's a ton of old stuff posting |
16:02 |
rhamby_ |
ok, I'll clean it up |
16:03 |
jeff |
based on the short url in the example tweet above, that would be the dlvr.it "auto post rss to social media" thing, I believe. |
16:03 |
berick |
abneiman: good question. i see no reason not to at this point. i'll ping the list. |
16:03 |
jihpringle |
thanks rhamby_ |
16:04 |
abneiman |
thanks berick |
16:04 |
rhamby_ |
ok, those should all be cleaned up now |
16:04 |
jeff |
and the prefix being "Planet Evergreen", I'm guessing either the planet aggregator or multiple RSS inputs to the planet reset timestamps/unique IDs, but can't be certain without more info. |
16:05 |
jeff |
planet.evergreen-ils.org is currently refusing connections on 80/tcp and 443/tcp. |
16:07 |
|
dbs joined #evergreen |
16:25 |
berick |
JBoyer: were you planning to push a DB constraint patch for bug 1787274? |
16:25 |
pinesol |
Launchpad bug 1787274 in Evergreen "Web Client: Transits Don't Always Clear" [Critical,Confirmed] https://launchpad.net/bugs/1787274 |
16:48 |
berick |
JBoyer: and more to the point, has your transit constraint resolved the issue for you? i seem to recall it did, but i'm not 100% on that. |
17:07 |
|
mguiney22 joined #evergreen |
17:16 |
|
mmorgan left #evergreen |
17:17 |
|
bdljohn joined #evergreen |
17:20 |
|
scymtym0 joined #evergreen |
17:31 |
|
joeyk joined #evergreen |
17:31 |
|
rlefaive joined #evergreen |
17:45 |
|
snaketheory joined #evergreen |
18:49 |
|
beanjammin joined #evergreen |
19:06 |
|
beanjammin joined #evergreen |
19:08 |
|
beanjammin joined #evergreen |
19:25 |
|
beanjammin joined #evergreen |
22:34 |
|
cyberg joined #evergreen |