Skip to content

Commit

Permalink
Code sample in R not working for services in namespace #297
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jan 26, 2023
1 parent dd33503 commit d2a1e2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/export/r.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ export default class R extends Exporter {
let args = await this.generateArguments(node);
// ToDo: This doesn't seem to be supported in R yet
if (node.namespace) {
args.namespace = this.e(node.namespace);
throw new Error("The R client doesn't support namespaced processes yet");
// args.namespace = this.e(node.namespace);
}
args = Utils.mapObject(args, (value, name) => `${name} = ${this.e(value)}`);

Expand Down

0 comments on commit d2a1e2a

Please sign in to comment.