User Details
- User Since
- Feb 25 2015, 6:50 AM (507 w, 4 d)
- Availability
- Available
Jun 1 2021
Oct 24 2019
Aug 13 2019
Apr 19 2019
Mar 21 2019
Looks like this patch broke serving Phabricator via php built-in server as __path__ variable is not available on $_POST after readHTTPPOSTData method is executed.
Dec 4 2018
Is this functionality blocked on something else?
Sep 12 2018
Sep 5 2018
Even if I'd provide the diff?
Jul 3 2017
--no-index - diff is created outside of repository by comparing directories.
--no-prefix - I'm not sure about this - some historical reasons and code in the service which generates diffs. But as I understand this was supported since D3744 and until rARCd0957c344156356123048be2219fb95a54c89a85.
Jun 21 2017
@epriestley git diff --no-index --no-prefix -U2000 $old_file_path $new_file_path
Jun 13 2017
May 24 2017
Apr 19 2017
Mar 29 2017
Oct 14 2016
Apr 25 2016
Apr 15 2016
Fix both left hands to become one left and one right.
Apr 14 2016
Because
>>> $a = ['hello' => []]; => [ "hello" => [] ] >>> $b = ['hello' => [1, 2, 3]]; => [ "hello" => [ 1, 2, 3 ] ] >>> $a + $b; => [ "hello" => [] ] >>> array_merge($a, $b); => [ "hello" => [ 1, 2, 3 ] ]
Apr 13 2016
Apr 6 2016
Apr 5 2016
I see your point with different "open" statuses.
Apr 4 2016
Removed unnecessary line
Mar 22 2016
@chad False alarm, I've checked wrong link. Problem existed on Maniphest global rules but it seems it is fixed already on upstream.
Oct 21 2015
Thanks for explanation!
Oct 16 2015
Oct 15 2015
Currently we have over 1500 active herald rules. Over 1000 of them are global.
Oct 14 2015
Oct 8 2015
Yeah. Sorry, was using version prior mentioned diff. Thanks!
Oct 7 2015
Sep 17 2015
Can you suggest the best way to achieve this?
My previous DELETE queries just reduced amount of tasks created, but I'm still getting few of those tasks.
Sep 16 2015
Thank you for full explanation.
@epriestley any thoughts? This issue is blocking entire queue.
Sep 15 2015
Execution log: P1855
Sep 14 2015
Sep 11 2015
Thanks for info!
Usually we are restarting builds on Jenkins if they failed due some environment issue. For example connection problems or git misconfiguration. If other words if build failed not because of code changes in diff, we restart build on Jenkins.
This was false alarm. key_chronological index was not added on feed_storynotification table on production db (but was added on local). I'm sorry for wasting your time :-)
Sep 10 2015
Let's ignore DIFF this then. Probably this is some configuration issue what we do not see now ;)
I doubt it is Percona issue. I've just tried perform same queries on my laptop with MySQL 5.6 and small data set. Still getting the same results as above.
Getting the same as above still.
Same
mysql> EXPLAIN SELECT * FROM feed_storynotification WHERE chronologicalKey < 6175228766710272490 ORDER BY chronologicalKey DESC LIMIT 100; +----+-------------+------------------------+-------+---------------+------------+---------+------+---------+------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+------------------------+-------+---------------+------------+---------+------+---------+------------------------------------------+ | 1 | SIMPLE | feed_storynotification | index | NULL | userPHID_2 | 133 | NULL | 2941950 | Using where; Using index; Using filesort | +----+-------------+------------------------+-------+---------------+------------+---------+------+---------+------------------------------------------+ 1 row in set (0.00 sec)
I'm getting different results:
Yes, I've solved this way. chronologicalKey already existed on the table but we had over 13 million records there. And performing DELETE query took quite long. Apparently it locked inserts to feed_storynotification table what caused deadlocks.
My previous Phabricator version was early 2015-May. I see, a bit later FeedStoryNotificationGarbageCollector was introduced (D13233).
Sep 3 2015
Jun 15 2015
cc @epriestley
Jun 11 2015
May 19 2015
Does this require any input from me (as I can not land the diff)?
/cc @epriestley
May 8 2015
Updated error matching regexp.
May 6 2015
Few more updates.
May 5 2015
Updated code regarding comments.
Apr 24 2015
Apr 17 2015
Apr 16 2015
Apr 15 2015
Apr 7 2015
Yes, @joshuaspence mentioned everything what was needed. Actually we are using both because each of them catching different errors.
Mar 26 2015
I see your point and sounds fair for me.
Mar 25 2015
We are providing different tokens for each URL.
And this parameter is not stored on Phabricator :-(
Each rule has different parameters in steps. In our case it is different HTTP Request URL.
Mar 24 2015
We trying to automate Harbormaster + Herald setup for new repositories in our company (have plans to provide Harbormaster API methods soon). This method is required to check if specific rules are not created yet.