Github user noazark commented on the pull request:

    https://github.com/apache/thrift/pull/232#issuecomment-58058114
  
    I'm not sure if I understand the problem. It looks like the failure occurs 
here (last line):
    
    ```js
    ThriftTest.Xception = function(args) {
      this.errorCode = null;
      this.message = null;
      if (args) {
        if (args.errorCode !== undefined) {
          this.errorCode = args.errorCode;
        }
        if (args.message !== undefined) {
          this.message = args.message;
        }
      }
    };
    Thrift.inherits(ThriftTest.Xception, Thrift.TException); // Line 871, 
ReferenceError: Can't find variable: Thrift
    ```
    
    To my eyes the problem is that the Thrift global is not loaded at this 
point, but that seems weird. Any ideas?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to