Skip to content

Commit

Permalink
fixing encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
jortiz16 committed Jul 16, 2016
1 parent 2839454 commit 245366d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/edu/washington/escience/myria/api/DatasetResource.java
Expand Up @@ -455,9 +455,9 @@ public Response createFunction(final CreateFunctionEncoding encoding) throws DbE
try {
functionCreationResponse =
server.createFunction(
encoding.functionName,
encoding.functionDefinition,
encoding.functionOutputSchema.toString(),
encoding.name,
encoding.definition,
encoding.outputSchema.toString(),
encoding.workers);
} catch (Exception e) {
throw new DbException();
Expand Down

0 comments on commit 245366d

Please sign in to comment.