How would you deal with a dev that doesn’t want to follow standards?
Posted by wantsennui@reddit | ExperiencedDevs | View on Reddit | 95 comments
A developer published a pull request which removes a standard, such as a response model, and uses another format. This is highlighted on a review comment. The dev sets this comment to “Wont fix”, removes the commenter as a reviewer and completes the PR.
How would you handle this situation?
Additional-Map-6256@reddit
I had this almost exact same scenario a few years ago. A dev from another team updated a whole bunch of dependencies on our largest microservice (it was a miscellaneous service and had way too much in it, so it was hard to test such a large change all at once) and didn't bother to test to make sure they didn't break anything.
We declined the PR, he reopened it at the end of the day and had someone on his team approve it, and merged it before we saw it.
We reverted the PR and changed the repo permissions so it needed someone from our team to approve it before it was merged.
thekwoka@reddit
This is what code owners are for.
That the PR requires approval from the code owners, not just anyone.
tdatas@reddit
That works for an open source project or a very small project. No way is slowing a project down to the pace of one person going to work for anything grown up sized for the sake of handling one twazzock.
thekwoka@reddit
You might be stupid.
There can be many code owners.
The point is that people cannot merge changes to a section of the code base with approval from the team responsible for that section of the code base.
If we think a website, the infra people need to approve stuff that affects actions and CI/CD/env stuff, front end approves changes in front end stuff, DB/backend people approve changes to db/backend.
This is exactly how "grown up" sized companies would do it, so 2 random people can't merge changes to every part of the code base.
tdatas@reddit
As a "stupid person" I know how Codeowners works. The implementation isn't the issue.
The problem here is two developers being irresponsible. Introducing codeowners to solve that then leaves everyone managing new bureaucracy rather than sitting these two down and saying "wtf".
Extension-Entry329@reddit
The problem with this is, they're people and they can and will blatantly break the rules, there's evidence of that in this specific case. Code owners can also be an entire team, so it's not the burdensome if the code owners are the people reviewing anyway.
Theres first pr is where this issue should have stopped because the owners of the code rejected the changes to their code. Code owners prevents the 2nd pr from ever getting any further than being created.
BB611@reddit
My company manages a 30 million loc codebase w/ several thousand active developers this way, and we're typically about 5-10 years behind the big tech companies. Not being able to do this is just engineering malpractice at this point.
Additional-Map-6256@reddit
Yeah before this, we had just trusted that everyone would stick to the agreement that they wouldn't do this. We changed repo settings after this
Metworld@reddit
Hope you also got that dev fired.
Additional-Map-6256@reddit
I wish. He was an asshole. Pretty sure he's still there though.
throwawayacc201711@reddit
Address the underlying process issues. Don’t talk about the dev. Focus on addressing the root causes that allowed this behavior to pass. That way you can get buy in and not make it about a specific dev.
Why can a dev unilaterally remove reviews? Why can they override?
If the commenter was removed as a reviewer, why did the other reviewer then approve?
If the process is robust, then it’ll eventually stop what this dev is doing.
wantsennui@reddit (OP)
The PR had the required number of approvers then another dev chimed in.
The underlying reason, the standard in place for the project, would be a follow up conversation with the team to discuss and decide on . The immediate concern is this work that overrides that without having that discussion prior.
sleepyj910@reddit
We always had ‘x reviews required but at least 1 from some with merge permissions’ and those folks were the guardians of the standards.
This dev should not have merge permissions.
lab-gone-wrong@reddit
If people are approving PRs that don't meet the standards, that's also an approver training issue
If the PR is approved then that is a go for merge. I agree with you that dismissing correct feedback is a bad thing to do, but it is inevitable in an environment that doesn't enforce standards.
midwestrider@reddit
There's a harsh truth in this answer. If you make this event about the approver who okayed a non-compliant pr, instead of the dev who shops around for approvals, you solve the problem forever.
TheNewOP@reddit
What do you do when everyone just doesn't want to take risks and approve PRs then?
midwestrider@reddit
Hire/promote solutions architects who can reliably automate code quality and compliance checks.
Make well balanced code stewardship a path to promotion.
throwawayacc201711@reddit
That sounds like a request changes not a comment IMO and that people are trying to be avoidant. That’s not to absolve the dev from doing what they did, but it sounds like that shouldn’t have been a comment. If someone has expected behavior like bring to team before doing, people should block.
thekwoka@reddit
You can mark "request changes" as resolved, and just remove that reviewer to prevent the requirement to get a new review...technically...
but normal devs shouldn't be allowed to do that.
Xicutioner-4768@reddit
Speaking for GitHub (I'm sure other systems vary) you have to dismiss the review if it was a request changes. In our org only certain administrators have the ability to dismiss a review in case someone went out of office or something. Authors are not allowed and are unable to dismiss blocking (request changes) reviews.
nutrecht@reddit
It's a people problem, not a process problem. And you can't fix people problems with more / different process.
grimcuzzer@reddit
It could be both. There are tools that enforce sticking to standards, e.g. https://www.archunit.org/ for Java, which would run in the CI/CD chain and prevent the PR from being merged until the standards issue is addressed.
SituationSoap@reddit
Maybe it could be, but it isn't. This is a problem of someone being a jerk.
grimcuzzer@reddit
Oh, he definitely is. I just meant that there are ways to improve the process as well, to prevent jerks from being jerks in the future. These automated convention checks probably should've been implemented at the start of the project (which is why I said it could be both), but time doesn't go backwards :P
alrightcommadude@reddit
He literally removed a reviewer who he disagreed with; how is this primarily not a people problem?
Saying it could be both is skirting around the main issue.
grimcuzzer@reddit
I think I wasn't too clear, sorry - I'm not saying it's not a people problem; the guy clearly is missing important soft skills and needs to be more respectful. I'm simply saying that the process could also be improved to prevent people from breaking convention.
MountaintopCoder@reddit
Why is he even able to do that? There's enough tooling to prevent these kinds of situations.
In my experience, if your system is trust based, it is a poorly designed system that will eventually break.
We can all agree that the bad actor is responsible for his actions, but in my opinion, this is a process failure by the code owner.
Fair_Permit_808@reddit
In our bitbucket anyone could merge because you need to pay them more money to get that feature. But if someone does that, they are unfit for the company anyway because such a person will always keep trying to game the system.
So instead of having more and more workarounds, you would get rid of the root cause of the issue.
SpiritedEclair@reddit
They probably retracted the pr and issued another one without said reviewer.
anand_rishabh@reddit
In my experience, if you're using GitHub, you can "request changes" to a pr instead of just comment and with that, pr can't be merged without your approval
bravopapa99@reddit
First warning after a detailed interview as to why they think they can do what nobody else is doing on the *team*.
Ginn_and_Juice@reddit
Block PRs to be merged until approved, so either he fixes it or it sits there forever until he gets fired
Roonaan@reddit
If your standard is not enforced by testing, static code analysis or other tooling and has to rely on reviewers mostly, then its not a valuable enough standard but just an opinion thats seems to be just accepted by a unspecified group of people. So if you have a standard as a company its enforced. otherwise its noise.
Roonaan@reddit
If your standard is not enforced by testing, static code analysis or other tooling and has to rely on reviewers mostly, then its not a valuable enough standard but just an opinion thats seems to be just accepted by a unspecified group of people. So if you have a standard as a company its enforced. otherwise its noise.
CanIhazCooKIenOw@reddit
Raise it with the team lead. If you are the team lead, have a separate chat to understand motivations first and then bring it up with the entire engineering team in your regular catchups.
Bottom line is that standards are not changed in flight. You raised it separately and use it as an example on why it should be changed to X.
Fair_Permit_808@reddit
I would think the bigger issue here is how the dev went around the disagreement by removing the reviewer. Doesn't matter if the change is good or not.
lizard_behind@reddit
This precisely - insane the amount of folks in this thread suggesting to just ignore this behavior.
Inside_Dimension5308@reddit
These flaws are quite common with the review process. Most PRs are ready to be merged if atleast one reviewer has approved it.
Github should have a access control on who can dismiss someone's PR. Certainly, the author shouldn't be able to do it.
Dealing it is to inform the team lead. Conventions should be followed to keep the codebase consistent.
Far_Archer_4234@reddit
I would mind my own business and let his supervisor deal with it, like any decent person. 🫠
gangreneballs@reddit
His supervisor won't be dealing with it if it's not brought up by someone else in the first place. Besides, plenty of people become prickly if you go to their supervisor first without talking to them directly, whereas others would just tell you if it's problem, talk to the supervisor. It's case-by-case.
valence_engineer@reddit
There's conceptually two ways to handle this:
In my experience 2 is a much more efficient way or working but also rarely lasts outside of smaller companies. Your company or team may be in the middle of a 2 to 1 transition which can be painful.
Ok_Slide4905@reddit
Fireable offense
gangreneballs@reddit
But genuinely - who just ignores any form of feedback and goes around it entirely?
BomberRURP@reddit
I’m wait what? Why is he allowed to merge?
whistler1421@reddit
Depends on the standard. If the standard is that Enum values have to be in alphabetical order, which style guides advocate, I’ll happily ignore and proceed with PR.
soundman32@reddit
If enums should be alphabetical, I hope they also have a value, otherwise adding Aardvark to the top of the list and everything else being renumbered is going to lead to physical violence/hilarity.
soundman32@reddit
What does your coding standards document say?
reini_urban@reddit
Enforce the standard technically, if you have such assholes/noobs. Like checks in the CI, pre-commit hooks and required reviewers.
Nofanta@reddit
Ideally I like to hire people I trust to write good code without me reading it all. I feel like once you’re bickering over small stuff like this you’ve lost the plot and are not likely to succeed as an organization.
Saraphite@reddit
Conversely, I would argue that the point that you let this stuff slide is the point where you're on the path to fail as an organisation.
David_AnkiDroid@reddit
This is fine if your development model is: "Use PRs as a patch, to explain how a feature looks"
You need to give more context on the tenure/seniority/pull of the dev.
HirsuteHacker@reddit
Haha sorry I'm shocked at the audacity, I'd be cackling in the office if I saw someone do that. Unreal.
Mrfunnynuts@reddit
Prs can't be merged without an approval
If you do something like that, I'm not approving it and I have valid reasons for not doing so
You are now behind on your work, and everyday that you let that ticket sit there, YOU look worse.
nutrecht@reddit
Is this the first time or a recurring pattern? If it's a recurring pattern I'd have a chat with their manager to discuss an approach.
Cyclic404@reddit
Have a sit down, and be curious about why they thought that was the correct behavior.
GoTeamLightningbolt@reddit
OP, are you the manager or tech lead for this dev? If so, it's education time. If not, you need to talk to that person probably.
saposapot@reddit
That’s exactly it. Escalate and let the lead deal with this strange behavior.
SpiritedEclair@reddit
I have seen a couple of times, usually arrogance and ego are the RC.
Historical_Emu_3032@reddit
I would be locking master on 1-2 reviewers approving.
They can follow the standard or be late on their tasks, if your company is running some kind of project management software the incomplete tickets will start leaving a paper trail and that dev can just be performance reviewed out.
If you've got a whole department running a town hall like once a quarter so people can share opinions on things like standards.
Some devs just aren't team players, and even if they're a genius oracle it's still better for the team to push through without and learn for themselves.
imo give a chance to correct then remove the toxicity quickly before it affects the wider team.
Computerist1969@reddit
Warning then fire.
Any-Woodpecker123@reddit
Is the standard actually a standard or just a project standard? Is it actually good or is it being done just because it’s done elsewhere?
Grab their opinion on why they don’t want to follow it, they may have a good reason for it, or for wanting to change the standard.
thekwoka@reddit
Why are they able to merge the PR without approvals? Or did someone else approve it?
Are they your team member? Fire them.
shifty303@reddit
We have rules that prevent being able to merge to main without an approval. Simple - conform or have a good argument.
wantsennui@reddit (OP)
They initially had the required reviewers until another dev chimed in.
danielrheath@reddit
"No disapprovers" is also an available rule on many code forges
coworker@reddit
Your issue is with the other approvers then
Empty_Geologist9645@reddit
Pre-commit hooks with linters and other stuff
Comprehensive-Pea812@reddit
just block the merge?
your team could use a discussion on pull request ethics.
if it is only you enforcing the standard and you have no power, you are cooked.
BertRenolds@reddit
Well, ya see that's a good question. What's your relationship with the developer? Are you the lead, are they the lead, are you both interns, do you report to the same manager.
I'm just gonna assume you're the same level, no lead etc.
I'd ask my manager what I should do. They'll likely point you to the lead or have a talk with the developer or have a talk with you.
And you're done
Sweet_Television2685@reddit
how did the dev complete the PR when you did not approve it, does that mean someone else approved it and they were ok with standard being removed?
mcampo84@reddit
Depends on my role. What is my role, exactly?
wantsennui@reddit (OP)
Not sure my role matters that much, but as a team member at least equivalent or above to the submitter.
BoysenberryLanky6112@reddit
The role absolutely matters, as the role indicates the level of authority you have as well as the responsibilities you have. For example if you're a tech lead or technical manager and you don't correct this behavior, it's your ass on the line if something does go wrong, and you absolutely do have the authority to tell them "that's not how we're going to do things on this team" and explain why but stress that they have to follow certain standards. I'm currently a tech lead and that's the approach I would take, but someone who did that kind of thing likely wouldn't last long with the culture we have, as we generally stress coding standards super strongly and if anything most of my team members are eager to learn from me rather than trying to fight with me over how things should be done.
If they're a junior and you're a junior or even mid-level this isn't really your job beyond discussing with the tech lead or technical manager. If they're a junior and you're a senior this is going to be team by team depending on expectations around senior mentorship of juniors, but it'd have to be in collaboration with a lead and/or manager for most teams I've been on if they're to the point of fighting you on it.
DandyPandy@reddit
Not your place. I suspect it was your review that got dismissed and you feel strongly about that. You can have a one-on-one chat if you think you can handle it without letting emotions get involved, but you are peers. They can tell you to get over it. If you aren’t positive you can have that discussion in a professional manner, you need to take it to a lead/manager. That’s what they get paid to deal with.
TopSwagCode@reddit
We had similar issue. We ended up having workshop on 5 dysfunctions of a team.
ArtisticBathroom8446@reddit
block the PR
Herrowgayboi@reddit
Is this guy new or are you the new guy? If the former, involve your manager. If the latter, find a new team. Not worth the headache.
funbike@reddit
Sounds like you don't have a linter.
Tip: get a linter that enforce standards. Look into "Evolutionary Architecure". Enfore in CI so PRs can't be merged until lint errors are fixed.
Document each instance. Discuss during a group retro.
Wishitweretru@reddit
Githook enforcement that blocks commit until it passing automated code inspection.
marmot1101@reddit
Privately call them on it. Be kind but just lay it out. “Hey, I noticed you did…, why’d you do that?” A little confrontation never hurt anyone as long as it stays civil. When I was a manager when people would come to me with stuff like that the first question I ask is “did you talk about it?” If not, I’d point them that direction.
FunEnvironmental6461@reddit
I'd let my PO or tech lead handle it. It's their job to enforce standards.
Not300RatsInACoat@reddit
Yeah! Let me email the lead. Oh shit! I'm the lead.
saposapot@reddit
If you are the lead and they basically ignored your comment and went around your back, you have much bigger issues to discuss
katikacak@reddit
My had similar problem before in terms of informing standard, my boss told me, because your system is allowing it to happen. So I create a system that doesn't allow it. In this case granular permission etc
Decent_Project_3395@reddit
I would ask the team lead, honestly. It isn't my job to be the police. And I don't want it to be. That is what they pay my team lead for.
shifty_lifty_doodah@reddit
If you are the tech lead:
“Jim, I commented on your use of response model because of XYZ. I know it’s a pain in the ass and doesn’t matter much, but we re trying to be consistent. Please meet the approval requirements.”
If you are not the tech lead, decide if it’s worth your time to fight about this. CC the tech lead on future PRs
Breklin76@reddit
Have you had a conversation with said dev about his reasoning for making such a refactor?
wantsennui@reddit (OP)
Sort of as a starter? That’s one reason for the question as to how to start or have the conversation.
Breklin76@reddit
Maybe something like, “Hey, we noticed that you removed X component which we have in place for Y standard(s). Would you please explain why you made that decision?”
EdelinePenrose@reddit
tell your manager and wait for shit to hit the fan. not your problem beyond doing your due diligence review and reporting it to your manager.
Harlemdartagnan@reddit
Standards are aet by the teamlead and he is the final apprival on prs. If he doesnt get the pr in his work is meaningless he doesnt get spring points or whatever and gets fired.
fragglet@reddit
Escalate to management
FinalEstablishment77@reddit
I’d talk to them. Is there a grounded technical reason that made the change? Or they just like it this different way or couldn’t figure it out?
Are they more or less senior than you? Does your team have published standards you can point to with some ‘must fix’ energy?
If you don’t have published standards, then make them.
If you talk to them and they’re a shit about it & more senior than you run it up above them with a “I just want to double check what our standards are” energy.
If they’re below you then now’s the time to put your mentor cap on and figure out what’s going on and why they are trying to push this through.
pa_dvg@reddit
Easy, do a revert commit without him as a reviewer.
ManagingPokemon@reddit
Do what you will.