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

fix: fix error when forwarding tff files #51

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions apisix/runner/utils/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# limitations under the License.
#

from tkinter.messagebox import NO
import flatbuffers
from A6 import Method as A6Method
from A6 import TextEntry as A6Entry
Expand Down Expand Up @@ -224,8 +225,12 @@ def parse_dict_vector(cls: object, ty: int) -> dict:
return res

for i in range(length):
key = getattr(cls, fn)(i).Name().decode()
val = getattr(cls, fn)(i).Value().decode()
key = getattr(cls, fn)(i).Name()
if key is not None:
key = key.decode()
val = getattr(cls, fn)(i).Value()
if key is not None:
val = val.decode()
res[key] = val

return res
Expand Down