| Summary: | Multiple browser-instances not supported | ||
|---|---|---|---|
| Product: | [RT] RAP | Reporter: | Austin Riddle <austin.riddle> |
| Component: | RWT | Assignee: | Project Inbox <rap-inbox> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P1 | ||
| Version: | 1.5 | ||
| Target Milestone: | 1.5 M4 | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
|
Description
Austin Riddle
Hi Austin, I cannot reproduce this. Does clearing the setting store (instance area) help? Or do you have any pointers how this problem can be reproduced? Today I started the Workbench Demo and I get "Multiple browser-instances not supported" error on startup too. I got this error only on first run - with text size determination requests. Anyone could confirm this with Workbench Demo? The problem was in Processor.js#processMeta. The check for existence of requestCounter parameter was wrong:
...
if( meta.requestCounter ) {
...
because it does not set the requestCounter to 0. Replaced with:
...
if( meta.requestCounter !== undefined ) {
...
Austin, please confirm that the issue is fixed.
(In reply to comment #3) > Austin, please confirm that the issue is fixed. I tested in our environment and it works great. |