I am currently an intern at a tech company. I am working on a feature with the tech lead. Even though my code is passing all test cases and functioning correctly, the tech lead leaves a lot of comments on my diffs. While I really appreciate his feedback, sometimes, I feel it is a bit excessive.
For example:
These encounters leave me confused, and I am concerned about the impact it will have on my coding quality metrics.
I am thinking of scheduling a 1:1 meeting with TL and mention this issue. Do you think this is a good idea? If so, how should I best explain this issue to my TL?
I had a similar problem with an architect on my team. I realized that the architect was spread too thin, so by the time they came back to discuss or look at something again, they would not have time to remember what they had recommended previously. I went through a few cycles where I would implement a change they asked for, and then they would ask me to change it again in a slightly different way, because they forgot what they recommended previously.
While this code is the most important thing happening for you, it is only one of a thousand tasks that are competing for space in the tech lead's brain. I would recommend a 1-on-1 and fill it with questions, not statements. That's what I did when I encountered something similar, and it was incredibly helpful. I was able to get a grasp on the larger goals the person was targeting for the code, so I could write code in line with their larger goals.
You can also walk through the code during the 1-on-1, so you can get more details on why they are asking for what they're asking. The fastest way to remove the review comment back and forth is to have the conversation over a call or in person.
First, I highly recommend reviewing this session we gave about 2 years ago now: [Masterclass] How To Do Amazing Code Review.
Eventually, you are right to reduce the number of "roundtrips" that happen on code review. Ideally, you're able to put out a code change and then have it approved on the first pass, perhaps with a few comments that the reviewer will trust you to address before merging.
However, as an intern, you should not expect this level of speed. As someone more junior, and new to the codebase, you need to earn trust and ramp up on the codebase patterns.
I have a few thoughts on your situation:
It's worth meeting your TL, but I wouldn't frame it as an "issue." Instead, ask questions that show your willingness to learn and be curious:
I noticed your comment about adding logging for race conditions. How would you recommend I identify that kind of issue on my own?
Are there other examples in the codebase you could point me to?