You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespacephpDemo.Foo# The same struct name as in bar.thrift filestructDemo {
1:requiredstringfoo2:requiredstringbar
}
serviceFooService {
voidtest(1:Demod)
}
bar.thrift
namespacephpDemo.Bar# The same struct name as in foo.thrift filestructDemo {
1:requiredstringbar
}
serviceBarService {
voidthisIsTest(1:Demod)
}
I expect in Thrift UI:
FooService
{
"d": {
"foo": "",
"bar": ""
}
}
BarService
{
"d": {
"bar": ""
}
}
I have:
FooService
{
"d": {
"bar": ""
}
}
BarService
{
"d": {
"bar": ""
}
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi!
I have thrift definitions:
foo.thrift
bar.thrift
I expect in Thrift UI:
FooService
BarService
I have:
FooService
BarService
The text was updated successfully, but these errors were encountered: