Skip to content

Commit

Permalink
Add comma at the end of dict
Browse files Browse the repository at this point in the history
  • Loading branch information
kparaju committed Oct 8, 2019
1 parent 7297489 commit ea14f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/seldon_core/microservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def rest_prediction_server():
'reload': 'true',
'workers': args.workers,
'max_requests': args.max_requests,
'max_requests_jitter': args.max_requests_jitter
'max_requests_jitter': args.max_requests_jitter,
}
app = seldon_microservice.get_rest_microservice(user_object)
StandaloneApplication(app,user_object,options=options).run()
Expand Down

0 comments on commit ea14f21

Please sign in to comment.