forked from fl00r/go-tarantool-1.6
-
Notifications
You must be signed in to change notification settings - Fork 59
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
UUID submodule dependency is broken #134
Labels
bug
Something isn't working
code health
Improve code readability, simplify maintenance and so on
help wanted
Extra attention is needed
Comments
DifferentialOrange
added
bug
Something isn't working
code health
Improve code readability, simplify maintenance and so on
help wanted
Extra attention is needed
labels
Jan 14, 2022
DifferentialOrange
added a commit
that referenced
this issue
Jan 14, 2022
Using separate module instead of plain package introduced several issues related to dependencies inside the repository (see #134). At the same time, same functionality could be provided with package. The only drawback is that google/uuid will be included in main package dependency even if user decide to use custom UUID parser or ignore UUID completely. Closes #134
This was referenced Jan 14, 2022
DifferentialOrange
added a commit
that referenced
this issue
Jan 31, 2022
Using separate module instead of plain package introduced several issues related to dependencies inside the repository (see #134). At the same time, same functionality could be provided with package. The only drawback is that google/uuid will be included in main package dependency even if user decide to use custom UUID parser or ignore UUID completely. Closes #134
ligurio
pushed a commit
that referenced
this issue
Mar 7, 2022
Using separate module instead of plain package introduced several issues related to dependencies inside the repository (see #134). At the same time, same functionality could be provided with package. The only drawback is that google/uuid will be included in main package dependency even if user decide to use custom UUID parser or ignore UUID completely. Closes #134
ligurio
pushed a commit
that referenced
this issue
Mar 30, 2022
Using separate module instead of plain package introduced several issues related to dependencies inside the repository (see #134). At the same time, same functionality could be provided with package. The only drawback is that google/uuid will be included in main package dependency even if user decide to use custom UUID parser or ignore UUID completely. Closes #134
ligurio
pushed a commit
that referenced
this issue
Apr 7, 2022
Using separate module instead of plain package introduced several issues related to dependencies inside the repository (see #134). At the same time, same functionality could be provided with package. The only drawback is that google/uuid will be included in main package dependency even if user decide to use custom UUID parser or ignore UUID completely. Closes #134
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Something isn't working
code health
Improve code readability, simplify maintenance and so on
help wanted
Extra attention is needed
Reproducer:
Since go-tarantool/uuid is a separate submodule (see #104 comments) and it requires original module to run tests, it uses
github.com/tarantool/go-tarantool
as a dependency. And them we have problems:The only way I see now is to completely remove
uuid_test.go
, which isn't a good one.The text was updated successfully, but these errors were encountered: