Page MenuHomePhabricator

Chicocvenancio (Chico Venancio)
User

Today

  • Clear sailing ahead.

Tomorrow

  • Clear sailing ahead.

Thursday

  • Clear sailing ahead.

User Details

User Since
Jan 11 2017, 4:41 PM (402 w, 5 d)
Availability
Available
IRC Nick
chicocvenancio
LDAP User
Chico Venancio
MediaWiki User
Chicocvenancio [ Global Accounts ]

Recent Activity

Jul 18 2024

Chicocvenancio added a comment to T358604: Update labpawspublic extension to jupyterlab 4 system.

Just to document where we're at with this. Getting labpawspublic to work with the api changes was pretty straightforward and only really required https://github.com/toolforge/labpawspublic/commit/0dda04b09f5a0eda8a9a7054e5dc0e47d7ef9b27. Unfortunately I couldn't figure out why it doesn't build on our singleuser image from source with yarn 3.5 (the default for jupyterlab). Not quite sure how to proceed with debugging this, my current plan is trying to avoid rebuild and go for a prebuilt extension.

Jul 18 2024, 9:58 PM · PAWS

Jul 10 2024

Isaac awarded T358604: Update labpawspublic extension to jupyterlab 4 system a Love token.
Jul 10 2024, 1:12 PM · PAWS
Chicocvenancio claimed T358604: Update labpawspublic extension to jupyterlab 4 system.

@Isaac mentioned paws public links are not working in irc/telegram, this should get the links back.

Jul 10 2024, 12:13 AM · PAWS

Jul 3 2024

Chicocvenancio added a comment to T367599: Request to join video project.

Sorry Andrew, still one request!

Can you please add me to video2commons-socketio and video2commons-test Toolforge projects?

Jul 3 2024, 6:07 AM · video2commons

May 21 2024

Chicocvenancio added a comment to T365154: video2commons general failure.

First question that come to my mind is: why do we have our own Redis instance? If we could switch to Toolforge instance, that would make a component less for us to manage, and we would get support from WMCS team.

May 21 2024, 7:32 PM · video2commons

May 20 2024

Chicocvenancio added a comment to T365154: video2commons general failure.

I would like to help, is there something we can do?
Given that frontend works nicely, I guess the problem comes from celery workers that don't pickup jobs or fail to report progress back to redis? (all my tasks are "pending" but I don't see what could be wrong using grafana only)

There are a few current problems. I have not had the time to look into the current issue, but Worker exited prematurely sounds like the task was picked up, but something killed the celery process (probably OOM).

May 20 2024, 1:39 PM · video2commons

May 17 2024

Chicocvenancio added a comment to T365154: video2commons general failure.

Clearly V2C is not ready for use, except for beta-testers.

May 17 2024, 5:52 PM · video2commons

Feb 23 2024

Chicocvenancio added a comment to T283839: Open refine stored password available in PAWS public.

Anything here that would keep us from making this task public? I'm not seeing anything obvious.

Feb 23 2024, 7:51 PM · SecTeam-Processed, OpenRefine, Cloud-VPS, Vuln-Infoleak, PAWS, Security

Jan 23 2024

Chicocvenancio added a comment to T334940: All Graphs broken on Wikimedia wikis (due to security issue T336556).

@Ita140188 I'd like to strongly pushback on your comment. It is meaningless to say hundreds of people work at WMF implying therefore solutions should be quick if we don't analyse the magnitude of the work to keep the websites of the wikimedia projects working.

Jan 23 2024, 4:30 PM · User-zeljkofilipin, Regression, User-notice, Tech Ambassadors & Translators, MediaWiki-extensions-Graph

Jan 2 2024

Chicocvenancio added a comment to T236446: Cloud Services shared IP (static NAT for external communications) often rate limited by YouTube for video downloads.

FYI trying to download https://www.youtube.com/watch?v=ecQWZWpwZVw locally, Youtube Downloader HD ( https://www.youtubedownloaderhd.com/download.html ) doesn't work, but yt-dlp ( https://github.com/yt-dlp/yt-dlp ) does work. Does YT block V2C by IP or by software ID, or both, or something else?

Jan 2 2024, 3:27 PM · cloud-services-team, Tool-spacemedia, Upstream, Cloud-VPS, video2commons

Dec 30 2023

Chicocvenancio added a comment to T236446: Cloud Services shared IP (static NAT for external communications) often rate limited by YouTube for video downloads.

FYI google has started to block downloads from video2commons again since around 2023-12-29 22:30.

Dec 30 2023, 2:43 PM · cloud-services-team, Tool-spacemedia, Upstream, Cloud-VPS, video2commons

Dec 19 2023

Chicocvenancio created T353736: Cloud VPS custom provider does not have arm Mac os package.
Dec 19 2023, 5:03 PM · Cloud-VPS
Chicocvenancio added a project to T353222: Server side upload for Yann: Server-side-upload-request.
Dec 19 2023, 1:48 PM · Server-side-upload-request, video2commons

Dec 18 2023

Chicocvenancio awarded T353659: V2C should be integrated into MW a Love token.
Dec 18 2023, 8:44 PM · video2commons, Commons

Dec 11 2023

Chicocvenancio added a watcher for Server-side-upload-request: Chicocvenancio.
Dec 11 2023, 3:55 PM

Jul 7 2023

Chicocvenancio added a comment to T341378: PAWS crash: User has exceeded the 'max_user_connections' resource (current value: 10).

Thank you @Chicocvenancio for reading my question and adding your ideas! Yeah, I just run the code with another Wiki account I have and it went well, so I'm guessing every user gets a limited number of SQL runs?

Jul 7 2023, 8:40 PM · PAWS
Chicocvenancio added a comment to T341378: PAWS crash: User has exceeded the 'max_user_connections' resource (current value: 10).

Running your code I realized that for loop only runs once, so even if it is leaking connections it probably is not your main issue. But since the max_connections are per user they might be coming from another notebook/process.

Jul 7 2023, 8:11 PM · PAWS
Chicocvenancio added a comment to T341378: PAWS crash: User has exceeded the 'max_user_connections' resource (current value: 10).

This is not a PAWS issue as much as a connection limit on the replicas issue. I'm not quite sure what pymysql and Pandas are doing there but it seems connections are leaking beyond each iteration of

def query_wikis(query, df):
    wikis = df.database_code.unique().tolist()
    combined_result = pd.DataFrame()
    for wiki in wikis:
        result = pd_query(query, wiki)
        result['wiki_db'] = wiki
        combined_result = pd.concat([combined_result, result])
    return combined_result
Jul 7 2023, 7:58 PM · PAWS

Jun 13 2023

Chicocvenancio added a comment to T338973: PAWS generating odd directory names that break the public links.

This is a change in behavior for jupyterlab 4 impacting labpawspublic. The property we are using is having RTC: prepended to it. I cannot figure out where to get the proper path, in fact I cannot find the documentation for jupyterlab's 4.0 api... (3.0 docs).
A quick solution is to remove the RTC: there.

Jun 13 2023, 6:01 PM · PAWS

Jun 9 2023

Chicocvenancio closed T333889: Povo Conta Tool Loads An External Resource, a subtask of T172065: Hunt for Toolforge tools that load resources from third party sites, as Resolved.
Jun 9 2023, 4:17 PM · Privacy Engineering, Toolforge-standards-committee, Tools, Privacy
Chicocvenancio closed T333889: Povo Conta Tool Loads An External Resource as Resolved.
Jun 9 2023, 4:17 PM · Privacy, Tools
Chicocvenancio assigned T333889: Povo Conta Tool Loads An External Resource to Ederporto.

LGTM, just apply the same changes to the other tools.

Jun 9 2023, 4:16 PM · Privacy, Tools

Jun 8 2023

Jopparn awarded T314977: Unable to convert/upload MP4 video through video2commons: "No such file or directory" a Yellow Medal token.
Jun 8 2023, 8:45 AM · video2commons

Jun 7 2023

Chicocvenancio closed T279175: Task error on a file as Resolved.

Hopefully resolved with current updates.

Jun 7 2023, 3:08 PM · video2commons
Chicocvenancio closed T314977: Unable to convert/upload MP4 video through video2commons: "No such file or directory" as Resolved.

Should be fixed now.

Jun 7 2023, 3:06 PM · video2commons
Chicocvenancio closed T326477: FileNotFoundError while uploading using Video2Commons as Resolved.

Local uploads should be working again.

Jun 7 2023, 2:49 PM · video2commons

May 24 2023

Chicocvenancio added a comment to T337196: Request trove db for Lutz Toolforge tool.

@Andrew https://wikitech.wikimedia.org/wiki/Help:Trove_database_user_guide#Before_you_start

May 24 2023, 2:16 PM · Toolforge (Quota-requests)

May 22 2023

Chicocvenancio added a comment to T337196: Request trove db for Lutz Toolforge tool.

@taavi I thought that as well, but wikitech docs link to this template, and there is no need for a project beyond the db.

May 22 2023, 9:06 AM · Toolforge (Quota-requests)

May 21 2023

Chicocvenancio created T337196: Request trove db for Lutz Toolforge tool.
May 21 2023, 11:59 AM · Toolforge (Quota-requests)
Chicocvenancio added a comment to T337181: Improve Lutz, a editor gender gap visualization tool.

image.png (1×3 px, 640 KB)

May 21 2023, 11:25 AM · Tools, Wikimedia-Hackathon-2023
Chicocvenancio claimed T337181: Improve Lutz, a editor gender gap visualization tool.
May 21 2023, 9:17 AM · Tools, Wikimedia-Hackathon-2023
TiagoLubiana awarded T337181: Improve Lutz, a editor gender gap visualization tool a Like token.
May 21 2023, 9:10 AM · Tools, Wikimedia-Hackathon-2023
Chicocvenancio created T337181: Improve Lutz, a editor gender gap visualization tool.
May 21 2023, 9:08 AM · Tools, Wikimedia-Hackathon-2023

May 19 2023

Chicocvenancio added a watcher for Wikimedia-Hackathon-2023: Chicocvenancio.
May 19 2023, 9:34 AM

Mar 23 2023

Chicocvenancio updated the task description for T332079: [Session] IP Masking.
Mar 23 2023, 11:48 AM · Wikimedia-Hackathon-2023

Jan 25 2023

Chicocvenancio added a comment to T326256: Edit on user talkpage with expired block shows Blocked-notice-logextract.

Sorry I missed the followup questions, but I think you have solved the mystery. Since I have ipblockexempt it didn't stop me from editing, but its likely my vpn provider was blocked.

Jan 25 2023, 1:32 PM · MW-1.41-notes (1.41.0-wmf.15; 2023-06-27), Skipped QA, GlobalBlocking, Editing-team (Kanban Board), DiscussionTools, VisualEditor-MediaWiki, VisualEditor

Jan 6 2023

Chicocvenancio updated subscribers of T280886: Add Code of Conduct link to the Universal Code of Conduct to all non technical wikis.

Linkback from https://lists.wikimedia.org/hyperkitty/list/[email protected]/message/DVA7I5TUHSNJAAYKOBD6O77FJT35E2MK/ where I cite this as an example of how WMF has delayed UCoC until the enforcemente guidelines are approved.

Jan 6 2023, 2:25 PM · MW-1.41-notes (1.41.0-wmf.12; 2023-06-06), MW-1.37-notes (1.37.0-wmf.7; 2021-05-25), Wikimedia-Site-requests, WikimediaMessages

Jan 4 2023

Chicocvenancio created T326256: Edit on user talkpage with expired block shows Blocked-notice-logextract.
Jan 4 2023, 5:39 PM · MW-1.41-notes (1.41.0-wmf.15; 2023-06-27), Skipped QA, GlobalBlocking, Editing-team (Kanban Board), DiscussionTools, VisualEditor-MediaWiki, VisualEditor
Chicocvenancio added a comment to T326164: Cannot stop server.

It is possible that this will be resolved with T317787

Not really. :/, this is the new Jupyterhub rbac.

Interesting, I was making this guess as I can still delete my server in minikube, and the major difference is that we are not introducing Pod Security Policies in minikube. Begging the question of if not psp, why is it working in minikube. Perhaps we are configuring something else differently in prod that we could adjust?

Jan 4 2023, 3:29 PM · PAWS
Chicocvenancio added a comment to T317787: Pod Security Policies.

Some sections of this, mostly host path parts, will become irrelevant with T308873 other parts remain unclear to me on why we need them. Aside from by default needing a psp, are there known benefits of our current setup?

Jan 4 2023, 3:27 PM · PAWS
Chicocvenancio added a comment to T326164: Cannot stop server.

It is possible that this will be resolved with T317787

Jan 4 2023, 3:21 PM · PAWS

Jan 3 2023

Chicocvenancio closed T326167: Can't connect to database replicas via PAWS as Resolved.
Jan 3 2023, 8:11 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

I tried again, and get a different error message:

400 : Bad Request
Invalid client_id parameter value.

I also get the same issue.

Jan 3 2023, 8:11 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

(my best guess is the authenticator is storing the client-id in the auth state and that has now changed in the upgrade)

Jan 3 2023, 8:00 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Could you try one more time? I've deleted your user from the db, it should be recreated on login for you.

Jan 3 2023, 7:58 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.
MySQL [s52771__paws]> select identifier  from oauth_clients where oauth_clients.allowed_scopes is NULL;
+-------------------------------------------------------+
| identifier                                            |
+-------------------------------------------------------+
| jupyterhub-user-ISO_3166_Bot                          |
| jupyterhub-user-Xover                                 |
| jupyterhub-user-GZWDer                                |
| jupyterhub-user-Qwerfjkl                              |
| jupyterhub-user-Lopullinen                            |
| jupyterhub-user-Ahenches                              |
| jupyterhub-user-Research_Bot                          |
| jupyterhub-user-PonoRoboT                             |
| jupyterhub-user-BlackShadowG                          |
| jupyterhub-user-Oshhhh                                |
| jupyterhub-user-ShalomOrobot                          |
| jupyterhub-user-W2Bot                                 |
| jupyterhub-user-Infrastruktur                         |
| jupyterhub-user-Syunsyunminmin                        |
| jupyterhub-user-%D9%84%D9%88%D9%82%D8%A7              |
| jupyterhub-user-Hannolans                             |
| jupyterhub-user-AnnikaHendriksen                      |
| jupyterhub-user-EmausBot                              |
| jupyterhub-user-Metalfingers2                         |
| jupyterhub-user-TholmeBot                             |
| jupyterhub-user-Hamel.husain                          |
| jupyterhub-user-Ainali                                |
| jupyterhub-user-Jklamo                                |
| jupyterhub-user-Ladon                                 |
| jupyterhub-user-%D8%A3%D8%A8%D9%88_%D8%AC%D8%A7%D8%AF |
| jupyterhub-user-DPLA_bot                              |
| jupyterhub-user-Andrawaag                             |
| jupyterhub-user-Davidjamesadkins                      |
| jupyterhub-user-Hesham_Moharam                        |
| jupyterhub-user-Kekavigi                              |
| jupyterhub-user-Anaka_Satamiya                        |
| jupyterhub-user-AdoroniBot                            |
| jupyterhub-user-MarioGom                              |
| jupyterhub-user-Jahl_de_Vautban                       |
| jupyterhub-user-TomT0m                                |
| jupyterhub-user-Pppery                                |
| jupyterhub-user-Kolja21                               |
+-------------------------------------------------------+
37 rows in set (0.002 sec)
Jan 3 2023, 7:43 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Its probably related to the user being running at the time of upgrade, let me try to manually clear the tokens in the db.

Jan 3 2023, 7:30 PM · PAWS
Chicocvenancio added a comment to T326167: Can't connect to database replicas via PAWS.

If I'm understanding that network policy shouldn't 172.16.1.129 be permitted under 172.16.0.0/12?

Jan 3 2023, 7:23 PM · PAWS
Chicocvenancio added a comment to T326167: Can't connect to database replicas via PAWS.

This seems to be the new networkpolicy blocking private ip addresses.

Jan 3 2023, 7:17 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Didn't manage to delete the server, just logged out and back in.

Jan 3 2023, 7:12 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

More I'm curious, added me where? I'm not in the list of admins in values.yaml, though I have access to the admin tab (well did until today)

Jan 3 2023, 6:28 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Still never known how I had admin before though. I always assumed it was pulling from cloud vps, but that seems unexpected?

Jan 3 2023, 6:00 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

https://jupyterhub.readthedocs.io/en/stable/rbac/roles.html# seems to be the new way of defining admins. I see the admin tab but nothing is there for me right now.

Jan 3 2023, 5:48 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Uhh, it now works... Maybe there was a cached logged in SA for me?

Jan 3 2023, 5:35 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

That seems fine to me. This is RBAC internal to jupyterhub to do oauth dances between the various components. I'm reading code/docs trying to figure out what needs to change.

Jan 3 2023, 5:25 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Oh, an account that was not logged in at the time of the upgrade can auth. Maybe it is something about accounts that were active during the upgrade?

That may parallel why it seemed to work in minikube.

Jan 3 2023, 5:21 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Seems the oauth tokens for the internal service accounts in jupyterhub don't have the right scopes, weird that this doesn't seem to be mentioned in the upgrade guide.

Jan 3 2023, 5:17 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Why was a rollback necessary? Is trying to fix the new version an option?

Jan 3 2023, 5:10 PM · PAWS
Chicocvenancio added a comment to T326160: PAWS is down.

Probably a migration was applied with the upgrade and alembic sees it in the table but not in the migration code of the rolled back version? Nuking the db is always an option, will only disrupt currently running pods and log everyone out. There might be a rollback migration code for the new migration, or it might even be compatible needing only the a DELETE in the revision, that would need to be figured it out if keeping the db is desired.

Jan 3 2023, 5:10 PM · PAWS

Dec 16 2022

Chicocvenancio added a comment to T325373: Is PAWS down?.

Things are working again for me. I see no 400 errors in the logs for the past 10 minutes.

Dec 16 2022, 4:20 PM · User-dcaro, PAWS
Chicocvenancio triaged T325373: Is PAWS down? as Unbreak Now! priority.
Dec 16 2022, 4:02 PM · User-dcaro, PAWS
Chicocvenancio added a comment to T325373: Is PAWS down?.

I confirm its down for me as well.

Dec 16 2022, 4:01 PM · User-dcaro, PAWS

Dec 12 2022

Chicocvenancio added a comment to T310622: [bug] after some time notebooks cannot be saved.

Reading the github issue I guess moving to notebook-based culling is the way to improve things, I can try to take a look at that.

Dec 12 2022, 9:04 PM · PAWS

Dec 6 2022

Chicocvenancio awarded T323317: Initiate and strengthen connections with the community and other partners a Like token.
Dec 6 2022, 8:38 PM · Developer-Advocacy (Apr-Jun 2023), User-Sandra_Fauconnier_WMSE, Tool Maintainers

Jun 15 2022

Chicocvenancio added a comment to T310749: hub deployment set to recreate.

the hub pod has some in-memory state, and (worse) some shared state with the proxy pod. https://github.com/jupyterhub/zero-to-jupyterhub-k8s/issues/1364 is main upstream issue on this, I think.

Jun 15 2022, 9:41 PM · PAWS
Chicocvenancio added a comment to T302164: upgrade jupyter-rsession-proxy.

https://github.com/toolforge/paws/pull/173 lgtm, Will make the PR upstream.
https://github.com/jupyterhub/jupyter-rsession-proxy/pull/130 is the upstream PR to track, we can use a fork if it takes a while to get merged.

Jun 15 2022, 4:46 PM · PAWS
Chicocvenancio added a comment to T302164: upgrade jupyter-rsession-proxy.

Probably https://github.com/jupyterhub/jupyter-rsession-proxy/blob/master/jupyter_rsession_proxy/__init__.py#L139

Jun 15 2022, 4:10 PM · PAWS
Chicocvenancio added a comment to T302164: upgrade jupyter-rsession-proxy.

I created https://github.com/jupyterhub/jupyter-rsession-proxy/issues/129 upstream for this. I think should be a pretty straightforward change there to get things working. As I see it, NB_USER should be the source of truth for users in jupyterhub land.

Jun 15 2022, 12:23 PM · PAWS

Jun 14 2022

Chicocvenancio added a comment to T308873: Investigate moving PAWS to magnum.

I think volume persistence is the biggest blocker here, right?

Jun 14 2022, 10:27 PM · cloud-services-team (FY2022/2023-Q3), PAWS
Chicocvenancio awarded T308873: Investigate moving PAWS to magnum a Love token.
Jun 14 2022, 10:26 PM · cloud-services-team (FY2022/2023-Q3), PAWS
Chicocvenancio added a comment to T310622: [bug] after some time notebooks cannot be saved.

Feels like your firefox is keeping jupyterlab open after it has a disconnect (Very possibly only a disconnect from the nfs), without telling you that it isn't connected.

I think there is something a bit more esoteric going on. If the the pod wasn't running or didn't have access to the filesystem creating a new file would not be possible. Might be browser session, pod v jupyterhub authentication or websocket connection failing. I would look into the hub and proxy logs for any error around the routes to the user pod and in the user pod itself for any error message the next time this happens.

Jun 14 2022, 5:54 PM · PAWS
Chicocvenancio added a comment to T310611: Unable to connect to Wikireplica databases using Python since the upgrade to Stretch.

Have you tried using the absolute path?

Jun 14 2022, 1:43 PM · Cloud-Services

May 22 2022

Chicocvenancio added a comment to T308928: Manage tools in toolforge with mwcli.

Sounds about right to me.

May 22 2022, 2:05 PM · Patch-For-Review, Toolforge, mwcli

May 21 2022

Chicocvenancio created T308955: Maintain kubeusers duplicates context and certificate entries in kubeconfig if the context is not named toolforge.
May 21 2022, 9:45 PM · Cloud-Services
Chicocvenancio created T308928: Manage tools in toolforge with mwcli.
May 21 2022, 3:33 PM · Patch-For-Review, Toolforge, mwcli
Chicocvenancio added a comment to T308888: Possibly remove deploy-hook.

yeah, we haven't used in a few years.

May 21 2022, 2:34 PM · good first task, PAWS

Apr 21 2022

Chicocvenancio added a comment to T292781: Measure impact of requiring login to edit articles on Persian Wikipedia.

The lack of an uptick in new weekly editors on fawiki during the ip block indicates to me a big difference from ptwiki's implementation. My lack of farsi prevents a deeper investigation, but in ptwiki the interface was hacked to point logged out users at the point of edit. The edit button was changed to point directly to the log-in page and banner explaining the need to create an account linking to the reasoning was put there.

Apr 21 2022, 4:25 PM · Epic, Product-Analytics, Anti-Harassment

Mar 14 2022

Chicocvenancio triaged T295043: Choose new PAWS frontend as Medium priority.
Mar 14 2022, 3:04 PM · PAWS
Chicocvenancio added a comment to T295043: Choose new PAWS frontend.

@Isaac indeed. Fixed the link to a permalink to avoid future issues.

Mar 14 2022, 3:03 PM · PAWS
Chicocvenancio updated the task description for T295043: Choose new PAWS frontend.
Mar 14 2022, 3:02 PM · PAWS

Mar 10 2022

Krinkle awarded T295043: Choose new PAWS frontend a Orange Medal token.
Mar 10 2022, 8:15 PM · PAWS

Mar 9 2022

Chicocvenancio added a watcher for Wikimedia-Hackathon-2022: Chicocvenancio.
Mar 9 2022, 4:55 PM

Feb 15 2022

Chicocvenancio added a comment to T300305: New upstream release for Pywikibot.

6.6.5 was merged.

Feb 15 2022, 5:59 PM · PAWS

Jan 13 2022

Chicocvenancio added a comment to T280303: Adding PIX as a payment type for Brazil.

Other bank transfer methods are also erroring for me.

Jan 13 2022, 12:24 AM · MW-1.38-notes (1.38.0-wmf.18; 2022-01-17), fundraising sprint Yeet-coaster, Fundraising Sprint Xenomorph Petting Zoo, FR-LATAM, Fundraising-Backlog

Jan 12 2022

Chicocvenancio added a comment to T280303: Adding PIX as a payment type for Brazil.

@EMartin its before we actually make the transaction.

Jan 12 2022, 11:43 PM · MW-1.38-notes (1.38.0-wmf.18; 2022-01-17), fundraising sprint Yeet-coaster, Fundraising Sprint Xenomorph Petting Zoo, FR-LATAM, Fundraising-Backlog

Dec 24 2021

Chicocvenancio added a comment to T298183: Upgrade OpenRefine on PAWS to version 3.5.1 (log4j related upgrade).

All for the upgrade but just for the record I don't see a path for exploitation here. All requests to openrefine go through the proxy and only authenticated requests pass. And if you're authenticated into a user server, well RCE is the main feature for jupyterhub.

Dec 24 2021, 2:26 PM · OpenRefine, PAWS

Dec 22 2021

Chicocvenancio added a comment to T298189: Make connecting to wiki replicas easier by installing wmpaws for all PAWS users.

LGTM. Opinionated ways to run the more basic tasks is a good way to reduce the burden on new users.

Dec 22 2021, 12:39 PM · User-Urbanecm, PAWS

Dec 15 2021

Chicocvenancio added a comment to T296385: Failed to install pyaudio module in PAWS Jupyter.

I guess portaudio19-dev is the missing apt package here.

Dec 15 2021, 3:28 AM · PAWS

Dec 2 2021

Chicocvenancio closed T296933: PAWS singleuser builds are failing due to packagemanager.rstudio.com errors as Resolved.
Dec 2 2021, 7:42 PM · PAWS
Chicocvenancio updated subscribers of T296933: PAWS singleuser builds are failing due to packagemanager.rstudio.com errors.

Thanks to @yuvipanda on the assistance on this. Would've taken me hours to understand it.

Dec 2 2021, 3:49 PM · PAWS
Chicocvenancio renamed T296933: PAWS singleuser builds are failing due to packagemanager.rstudio.com errors from Fix PAWS singleuser R studio build error to PAWS singleuser builds are failing due to packagemanager.rstudio.com errors.
Dec 2 2021, 3:48 PM · PAWS
Chicocvenancio created T296933: PAWS singleuser builds are failing due to packagemanager.rstudio.com errors.
Dec 2 2021, 1:30 PM · PAWS

Nov 26 2021

Chicocvenancio added a comment to T272752: App mishandles internal links to articles ending in question mark.

Just noting we received a report of this bug in the Portuguese wikipedia telegram group today.

Nov 26 2021, 1:55 PM · Mobile, Wikipedia-iOS-App-Backlog

Nov 25 2021

Chicocvenancio closed T295257: Upgrade OpenRefine on PAWS to version 3.5.0 as Resolved by committing rPAWS57b56a65349e: Set openrefine Host Fixes T295257.
Nov 25 2021, 11:56 PM · PAWS, OpenRefine
Chicocvenancio reopened T295257: Upgrade OpenRefine on PAWS to version 3.5.0 as "Open".

I had to rollback as the new Host validation in openrefine 3.5 broke it with the current settings. I'm not quite sure what best to do here, since we're already proxying it through the jupyter server we could disable the validation. But I think I'll set it up to have the proper value in the next few days.

Nov 25 2021, 9:41 PM · PAWS, OpenRefine
Chicocvenancio added a comment to T295257: Upgrade OpenRefine on PAWS to version 3.5.0.

PR in https://github.com/toolforge/paws/pull/110

Nov 25 2021, 7:22 PM · PAWS, OpenRefine

Nov 24 2021

Chicocvenancio claimed T295257: Upgrade OpenRefine on PAWS to version 3.5.0.
Nov 24 2021, 10:12 PM · PAWS, OpenRefine

Nov 18 2021

Ixocactus awarded rTVTC07d0e34c1eae: Fix upload parameter a Party Time token.
Nov 18 2021, 11:15 PM
Ixocactus awarded T295115: "Video2commons is getting an error: An exception occurred: FileNotFoundError: b'[Errno 2] No such file or directory'" a Like token.
Nov 18 2021, 12:52 AM · video2commons

Nov 17 2021

Chicocvenancio closed T295908: Server side upload requests created by video2commons should add #server-side-upload-request as Resolved.

Merged and deployed

Nov 17 2021, 8:07 PM · User-Urbanecm, video2commons