We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
DESCRIPTION
cosbench-http build fails saying the following symbol cannot be found.
cosbench-http
import org.omg.CORBA.PUBLIC_MEMBER;
https://github.com/intel-cloud/cosbench/blob/master/dev/cosbench-http/src/com/intel/cosbench/client/http/HttpClientUtil.java#L51
REPRODUCE PROCEDURE
I built master branch of cosbench using the following environment.
ANALYSYS and SUGGESTED RESOLUTION
Firstly, CORBAR modules were removed at Java-11, and 'org.omg.*' is a part of CORBA.
Secondaly, the symbol is not referenced at all in cosbench-http.
So, I think the line importing org.omg.CORBA.PUBLIC_MEMBER can be simply removed.
org.omg.CORBA.PUBLIC_MEMBER
The text was updated successfully, but these errors were encountered:
Remove CORBA references, and resolve intel-cloud#412
9b10bf6
Merge pull request #2 from thatsdone/hotfix/412
d66498b
Successfully merging a pull request may close this issue.
DESCRIPTION
cosbench-http
build fails saying the following symbol cannot be found.https://github.com/intel-cloud/cosbench/blob/master/dev/cosbench-http/src/com/intel/cosbench/client/http/HttpClientUtil.java#L51
REPRODUCE PROCEDURE
I built master branch of cosbench using the following environment.
ANALYSYS and SUGGESTED RESOLUTION
Firstly, CORBAR modules were removed at Java-11, and 'org.omg.*' is a part of CORBA.
Secondaly, the symbol is not referenced at all in cosbench-http.
So, I think the line importing
org.omg.CORBA.PUBLIC_MEMBER
can be simply removed.The text was updated successfully, but these errors were encountered: