Skip to content

Commit

Permalink
[GOBBLIN-217][GOBBLIN-191][GOBBLIN-213] Fix gobblin-admin module to u…
Browse files Browse the repository at this point in the history
…se correct idString

[GOBBLIN-191] Make sure cron scheduler works and
tune schedule period

Merge branch 'master' into service

[GOBBLIN-213] Add scheduler service to
GobblinServiceManager

Merge branch 'master' into service

[GOBBLIN-217] Fix gobblin-admin module to use
correct idString

Closes #2068 from abti/service
  • Loading branch information
abti committed Aug 21, 2017
1 parent d6ac236 commit c5caa98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var app = app || {}
fetchCurrent: function (idType, id, params) {
// Fetches using the custom rest.li url scheme
params = params || ''
var idString = idType === 'LIST_TYPE' ? 'gobblin~2Erest~2EQueryListType' : 'string'
var idString = idType === 'LIST_TYPE' ? 'org~2Eapache~2Egobblin~2Erest~2EQueryListType' : 'string'

var generatedUrl = this.urlRoot + 'idType=' + idType
generatedUrl += '&id.' + idString + '=' + id
Expand Down

0 comments on commit c5caa98

Please sign in to comment.