Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expose Pulsar Beam db handler struct #55

Merged
merged 2 commits into from
May 18, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix compiler error
  • Loading branch information
zzzming committed May 18, 2020
commit 2df5cc3d9d8058544619ffa175cd30efcc39a7c1
2 changes: 1 addition & 1 deletion src/route/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func UpdateTopicHandler(w http.ResponseWriter, r *http.Request) {

// DeleteTopicHandler deletes a topic
func DeleteTopicHandler(w http.ResponseWriter, r *http.Request) {
topicKey, err := getTopicKey(r)
topicKey, err := GetTopicKey(r)
if err != nil {
util.ResponseErrorJSON(err, w, http.StatusUnprocessableEntity)
return
Expand Down