Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

huijeong-kim님 기여 #10

Open
1 of 3 tasks
sanxiyn opened this issue Oct 2, 2022 · 3 comments
Open
1 of 3 tasks

huijeong-kim님 기여 #10

sanxiyn opened this issue Oct 2, 2022 · 3 comments
Assignees

Comments

@sanxiyn
Copy link
Member

sanxiyn commented Oct 2, 2022

  • 프로그래밍 언어 선정: Rust
  • 프로젝트 선정
  • 이슈 선정
@huijeong-kim
Copy link

huijeong-kim commented Oct 9, 2022

actix에 기여해 보고 싶은데, 어려운 것 같아 공부를 더 해봐야 할 것 같아요.

당장은 작은 기여라도 해 보고 싶어서 good first issue 위주로 찾아보고 있는데요, 내가 기여할 수 있을만한 이슈를 찾는게 어려운 것 같습니다ㅠㅠ 현재 찾아본 건 coreutils의 #3906 이슈인데요. 괜찮을 지 모르겠지만 이번 연휴에 한 번 해볼까 합니다ㅎㅎ

@huijeong-kim
Copy link

지난 번에 본다고 한 #3906 이슈는 다른 분이 보고 계셔서 다른 good first issue중 #3818을 골라 PR 올려 봤습니다..! 이렇게 바로 올리면 되는 건지 모르겠네요 ㅎㅎ

uutils/coreutils#4027

@huijeong-kim
Copy link

지난 번에 올린 PR 은 머지되었습니다. 근데 머지 후 ci test에서 fail이 발생해서 revert 되었어요. 해당 테스트를 로컬에서 돌려보는 데 애를 먹었는데(결국 못 돌렸어요), 기존 PR 리뷰어분이 로컬에서는 fail이 나지 않는데 서버에서만 문제가 생긴다고 하더라고요. 리뷰어분이 코드를 다음과 같이 수정해 주시고 다시 머지되었습니다.

fail code

let nonames = *matches
        .try_get_one("no-names")
        .unwrap_or(Some(&false))
        .unwrap();

pass code

   let nonames = *matches
        .try_get_one("no-names")
        .unwrap_or(None)
        .unwrap_or(&false);

서버 테스트 fail 을 확인하는 과정이 매우 어려웠습니다 ㅠㅠ 리뷰어분 도움이 없었으면 못했을 것 같아요ㅠㅠ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants