Page MenuHomePhabricator

[services] Blob - remove redundant glob from CMakeLists.txt
AbandonedPublic

Authored by karol on Feb 15 2022, 5:18 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 23, 5:09 PM
Unknown Object (File)
Tue, Apr 23, 5:09 PM
Unknown Object (File)
Tue, Apr 23, 5:03 PM
Unknown Object (File)
Mar 13 2024, 8:44 PM
Unknown Object (File)
Mar 3 2024, 2:30 PM
Unknown Object (File)
Mar 3 2024, 2:29 PM
Unknown Object (File)
Mar 3 2024, 2:22 PM
Unknown Object (File)
Mar 3 2024, 6:26 AM

Details

Summary

I spotted that there is a redundant glob in the blob's cmake.

Depends on D3198

Test Plan
cd services
yarn run-blob-service-dev-mode
yarn test-blob-service-dev-mode

Diff Detail

Repository
rCOMM Comm
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

karol edited the summary of this revision. (Show Details)
karol edited the test plan for this revision. (Show Details)
karol added reviewers: tomek, max, varun.
ashoat added a reviewer: jim.
This revision is now accepted and ready to land.Feb 15 2022, 7:44 PM
tomek requested changes to this revision.Feb 16 2022, 5:31 AM
tomek added inline comments.
services/blob/docker-server/contents/server/CMakeLists.txt
37–41

I think that SOURCE_CODE and DEV_SOURCE_CODE should be related, so if we have ./src/**/*.cpp in source code, shouldn't we keep ./src/**/*.dev.cpp?

This revision now requires changes to proceed.Feb 16 2022, 5:31 AM
karol added inline comments.
services/blob/docker-server/contents/server/CMakeLists.txt
37–41

Maybe that's the reason that this value is here. If you think we need this, we can always abandon the diff, just wanted to point out that it's redundant as no files matching this glob exist.

tomek added inline comments.
services/blob/docker-server/contents/server/CMakeLists.txt
37–41

Up to you. It doesn't hurt to keep it and it will make it easier to add new dev code, but we can also delete this.

This revision is now accepted and ready to land.Feb 21 2022, 5:20 AM